/* DUPLICATOR-LITE (PHP BUILD MODE) MYSQL SCRIPT CREATED ON : 2018-08-28 03:22:19 */

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

SET FOREIGN_KEY_CHECKS = 0;

CREATE TABLE `wp_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_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` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_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=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;

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

CREATE TABLE `wp_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`)
) ENGINE=MyISAM AUTO_INCREMENT=1352 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_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_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=2431 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_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_520_ci NOT NULL,
  `post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `pinged` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT '0',
  `post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=MyISAM AUTO_INCREMENT=1467 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wp_redirection_404` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `created` datetime NOT NULL,
  `url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `agent` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `referrer` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `ip` varchar(45) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `created` (`created`),
  KEY `url` (`url`(191)),
  KEY `referrer` (`referrer`(191)),
  KEY `ip` (`ip`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wp_redirection_groups` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `tracking` int(11) NOT NULL DEFAULT '1',
  `module_id` int(11) unsigned NOT NULL DEFAULT '0',
  `status` enum('enabled','disabled') COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'enabled',
  `position` int(11) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `module_id` (`module_id`),
  KEY `status` (`status`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wp_redirection_items` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `url` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `regex` int(11) unsigned NOT NULL DEFAULT '0',
  `position` int(11) unsigned NOT NULL DEFAULT '0',
  `last_count` int(10) unsigned NOT NULL DEFAULT '0',
  `last_access` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `group_id` int(11) NOT NULL DEFAULT '0',
  `status` enum('enabled','disabled') COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'enabled',
  `action_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `action_code` int(11) unsigned NOT NULL,
  `action_data` mediumtext COLLATE utf8mb4_unicode_520_ci,
  `match_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `title` text COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`id`),
  KEY `url` (`url`(191)),
  KEY `status` (`status`),
  KEY `regex` (`regex`),
  KEY `group_idpos` (`group_id`,`position`),
  KEY `group` (`group_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wp_redirection_logs` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `created` datetime NOT NULL,
  `url` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `sent_to` mediumtext COLLATE utf8mb4_unicode_520_ci,
  `agent` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `referrer` mediumtext COLLATE utf8mb4_unicode_520_ci,
  `redirection_id` int(11) unsigned DEFAULT NULL,
  `ip` varchar(45) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `module_id` int(11) unsigned NOT NULL,
  `group_id` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `created` (`created`),
  KEY `redirection_id` (`redirection_id`),
  KEY `ip` (`ip`),
  KEY `group_id` (`group_id`),
  KEY `module_id` (`module_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

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_520_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_520_ci NOT NULL DEFAULT '',
  `description` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_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) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wp_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_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_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=82 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

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

CREATE TABLE `wp_yoast_seo_links` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_id` bigint(20) unsigned NOT NULL,
  `target_post_id` bigint(20) unsigned NOT NULL,
  `type` varchar(8) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`id`),
  KEY `link_direction` (`post_id`,`type`)
) ENGINE=MyISAM AUTO_INCREMENT=3456 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

CREATE TABLE `wp_yoast_seo_meta` (
  `object_id` bigint(20) unsigned NOT NULL,
  `internal_link_count` int(10) unsigned DEFAULT NULL,
  `incoming_link_count` int(10) unsigned DEFAULT NULL,
  UNIQUE KEY `object_id` (`object_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;


/* INSERT TABLE DATA: wp_duplicator_packages */
INSERT INTO `wp_duplicator_packages` VALUES("1", "20180520_beyondink", "b60f997bbd7319eb5209180520023232", "50", "2018-05-20 02:33:20", "alluredigitalmarketing", "O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2018-05-20 02:32:32\";s:7:\"Version\";s:6:\"1.2.38\";s:9:\"VersionWP\";s:5:\"4.9.5\";s:9:\"VersionDB\";s:6:\"5.6.39\";s:10:\"VersionPHP\";s:6:\"7.0.30\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";i:1;s:4:\"Name\";s:18:\"20180520_beyondink\";s:4:\"Hash\";s:32:\"b60f997bbd7319eb5209180520023232\";s:8:\"NameHash\";s:51:\"20180520_beyondink_b60f997bbd7319eb5209180520023232\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:71:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-snapshots/tmp\";s:8:\"StoreURL\";s:61:\"https://beyondink.alluredigitalmarketing.com.au/wp-snapshots/\";s:8:\"ScanFile\";s:61:\"20180520_beyondink_b60f997bbd7319eb5209180520023232_scan.json\";s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:6:\"Status\";N;s:6:\"WPUser\";s:22:\"alluredigitalmarketing\";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:63:\"20180520_beyondink_b60f997bbd7319eb5209180520023232_archive.zip\";s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:54:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au\";s:4:\"Size\";i:119819545;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\";r:1;s:29:\"\0DUP_Archive\0tmpFilterDirsAll\";a:0:{}s:24:\"\0DUP_Archive\0wpCorePaths\";a:6:{i:0;s:63:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-admin\";i:1;s:73:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-content/uploads\";i:2;s:75:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-content/languages\";i:3;s:73:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-content/plugins\";i:4;s:72:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-content/themes\";i:5;s:66:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-includes\";}}s:9:\"Installer\";O:13:\"DUP_Installer\":7:{s:4:\"File\";s:65:\"20180520_beyondink_b60f997bbd7319eb5209180520023232_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\";O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2018-05-20 02:32:32\";s:7:\"Version\";s:6:\"1.2.38\";s:9:\"VersionWP\";s:5:\"4.9.5\";s:9:\"VersionDB\";s:6:\"5.6.39\";s:10:\"VersionPHP\";s:6:\"7.0.30\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";N;s:4:\"Name\";s:18:\"20180520_beyondink\";s:4:\"Hash\";s:32:\"b60f997bbd7319eb5209180520023232\";s:8:\"NameHash\";s:51:\"20180520_beyondink_b60f997bbd7319eb5209180520023232\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:71:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-snapshots/tmp\";s:8:\"StoreURL\";s:61:\"https://beyondink.alluredigitalmarketing.com.au/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\";r:67;s:8:\"Database\";O:12:\"DUP_Database\":13:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";i:1360571;s:4:\"File\";s:64:\"20180520_beyondink_b60f997bbd7319eb5209180520023232_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\";s:136:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-snapshots/tmp/20180520_beyondink_b60f997bbd7319eb5209180520023232_database.sql\";s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;}}}s:8:\"Database\";r:97;}");
INSERT INTO `wp_duplicator_packages` VALUES("2", "20180520_beyondink", "471a4355c11df8789797180520024027", "100", "2018-05-20 02:40:35", "alluredigitalmarketing", "O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2018-05-20 02:40:27\";s:7:\"Version\";s:6:\"1.2.38\";s:9:\"VersionWP\";s:5:\"4.9.5\";s:9:\"VersionDB\";s:6:\"5.6.39\";s:10:\"VersionPHP\";s:6:\"7.0.30\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";i:2;s:4:\"Name\";s:18:\"20180520_beyondink\";s:4:\"Hash\";s:32:\"471a4355c11df8789797180520024027\";s:8:\"NameHash\";s:51:\"20180520_beyondink_471a4355c11df8789797180520024027\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:71:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-snapshots/tmp\";s:8:\"StoreURL\";s:61:\"https://beyondink.alluredigitalmarketing.com.au/wp-snapshots/\";s:8:\"ScanFile\";s:61:\"20180520_beyondink_471a4355c11df8789797180520024027_scan.json\";s:7:\"Runtime\";s:9:\"6.03 sec.\";s:7:\"ExeSize\";s:8:\"445.94KB\";s:7:\"ZipSize\";s:8:\"141.83KB\";s:6:\"Status\";N;s:6:\"WPUser\";s:22:\"alluredigitalmarketing\";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:1;s:4:\"File\";s:63:\"20180520_beyondink_471a4355c11df8789797180520024027_archive.zip\";s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:54:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au\";s:4:\"Size\";i:145229;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\";r:1;s:29:\"\0DUP_Archive\0tmpFilterDirsAll\";a:0:{}s:24:\"\0DUP_Archive\0wpCorePaths\";a:6:{i:0;s:63:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-admin\";i:1;s:73:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-content/uploads\";i:2;s:75:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-content/languages\";i:3;s:73:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-content/plugins\";i:4;s:72:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-content/themes\";i:5;s:66:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-includes\";}}s:9:\"Installer\";O:13:\"DUP_Installer\":7:{s:4:\"File\";s:65:\"20180520_beyondink_471a4355c11df8789797180520024027_installer.php\";s:4:\"Size\";i:456645;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:1;}s:8:\"Database\";O:12:\"DUP_Database\":13:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";i:1365233;s:4:\"File\";s:64:\"20180520_beyondink_471a4355c11df8789797180520024027_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\";s:136:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-snapshots/tmp/20180520_beyondink_471a4355c11df8789797180520024027_database.sql\";s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;}}");
INSERT INTO `wp_duplicator_packages` VALUES("3", "20180520_beyondink", "3bd991e9f952a6a01453180520024203", "100", "2018-05-20 02:42:11", "alluredigitalmarketing", "O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2018-05-20 02:42:03\";s:7:\"Version\";s:6:\"1.2.38\";s:9:\"VersionWP\";s:5:\"4.9.5\";s:9:\"VersionDB\";s:6:\"5.6.39\";s:10:\"VersionPHP\";s:6:\"7.0.30\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";i:3;s:4:\"Name\";s:18:\"20180520_beyondink\";s:4:\"Hash\";s:32:\"3bd991e9f952a6a01453180520024203\";s:8:\"NameHash\";s:51:\"20180520_beyondink_3bd991e9f952a6a01453180520024203\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:71:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-snapshots/tmp\";s:8:\"StoreURL\";s:61:\"https://beyondink.alluredigitalmarketing.com.au/wp-snapshots/\";s:8:\"ScanFile\";s:61:\"20180520_beyondink_3bd991e9f952a6a01453180520024203_scan.json\";s:7:\"Runtime\";s:11:\"258.07 sec.\";s:7:\"ExeSize\";s:8:\"445.95KB\";s:7:\"ZipSize\";s:8:\"114.27MB\";s:6:\"Status\";N;s:6:\"WPUser\";s:22:\"alluredigitalmarketing\";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:63:\"20180520_beyondink_3bd991e9f952a6a01453180520024203_archive.zip\";s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:54:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au\";s:4:\"Size\";i:119822081;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\";r:1;s:29:\"\0DUP_Archive\0tmpFilterDirsAll\";a:0:{}s:24:\"\0DUP_Archive\0wpCorePaths\";a:6:{i:0;s:63:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-admin\";i:1;s:73:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-content/uploads\";i:2;s:75:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-content/languages\";i:3;s:73:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-content/plugins\";i:4;s:72:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-content/themes\";i:5;s:66:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-includes\";}}s:9:\"Installer\";O:13:\"DUP_Installer\":7:{s:4:\"File\";s:65:\"20180520_beyondink_3bd991e9f952a6a01453180520024203_installer.php\";s:4:\"Size\";i:456648;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:1;}s:8:\"Database\";O:12:\"DUP_Database\":13:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";i:1369327;s:4:\"File\";s:64:\"20180520_beyondink_3bd991e9f952a6a01453180520024203_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\";s:136:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-snapshots/tmp/20180520_beyondink_3bd991e9f952a6a01453180520024203_database.sql\";s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;}}");
INSERT INTO `wp_duplicator_packages` VALUES("4", "20180520_beyondink", "870468074f2bc22b4937180611040918", "40", "2018-06-11 04:09:44", "alluredigitalmarketing", "O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2018-06-11 04:09:18\";s:7:\"Version\";s:6:\"1.2.38\";s:9:\"VersionWP\";s:5:\"4.9.6\";s:9:\"VersionDB\";s:6:\"5.6.39\";s:10:\"VersionPHP\";s:6:\"7.0.30\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";i:4;s:4:\"Name\";s:18:\"20180520_beyondink\";s:4:\"Hash\";s:32:\"870468074f2bc22b4937180611040918\";s:8:\"NameHash\";s:51:\"20180520_beyondink_870468074f2bc22b4937180611040918\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:71:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-snapshots/tmp\";s:8:\"StoreURL\";s:61:\"https://beyondink.alluredigitalmarketing.com.au/wp-snapshots/\";s:8:\"ScanFile\";s:61:\"20180520_beyondink_870468074f2bc22b4937180611040918_scan.json\";s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:6:\"Status\";N;s:6:\"WPUser\";s:22:\"alluredigitalmarketing\";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:63:\"20180520_beyondink_870468074f2bc22b4937180611040918_archive.zip\";s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:54:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au\";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\";r:1;s:29:\"\0DUP_Archive\0tmpFilterDirsAll\";a:0:{}s:24:\"\0DUP_Archive\0wpCorePaths\";a:6:{i:0;s:63:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-admin\";i:1;s:73:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-content/uploads\";i:2;s:75:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-content/languages\";i:3;s:73:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-content/plugins\";i:4;s:72:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-content/themes\";i:5;s:66:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-includes\";}}s:9:\"Installer\";O:13:\"DUP_Installer\":7:{s:4:\"File\";s:65:\"20180520_beyondink_870468074f2bc22b4937180611040918_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\";O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2018-06-11 04:09:18\";s:7:\"Version\";s:6:\"1.2.38\";s:9:\"VersionWP\";s:5:\"4.9.6\";s:9:\"VersionDB\";s:6:\"5.6.39\";s:10:\"VersionPHP\";s:6:\"7.0.30\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";N;s:4:\"Name\";s:18:\"20180520_beyondink\";s:4:\"Hash\";s:32:\"870468074f2bc22b4937180611040918\";s:8:\"NameHash\";s:51:\"20180520_beyondink_870468074f2bc22b4937180611040918\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:71:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-snapshots/tmp\";s:8:\"StoreURL\";s:61:\"https://beyondink.alluredigitalmarketing.com.au/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\";r:67;s:8:\"Database\";O:12:\"DUP_Database\":13:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";i:2437603;s:4:\"File\";s:64:\"20180520_beyondink_870468074f2bc22b4937180611040918_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\";s:136:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-snapshots/tmp/20180520_beyondink_870468074f2bc22b4937180611040918_database.sql\";s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;}}}s:8:\"Database\";r:97;}");
INSERT INTO `wp_duplicator_packages` VALUES("5", "20180520_beyondink", "679c2358b7dae1772147180611041436", "50", "2018-06-11 04:14:52", "alluredigitalmarketing", "O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2018-06-11 04:14:36\";s:7:\"Version\";s:6:\"1.2.38\";s:9:\"VersionWP\";s:5:\"4.9.6\";s:9:\"VersionDB\";s:6:\"5.6.39\";s:10:\"VersionPHP\";s:6:\"7.0.30\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";i:5;s:4:\"Name\";s:18:\"20180520_beyondink\";s:4:\"Hash\";s:32:\"679c2358b7dae1772147180611041436\";s:8:\"NameHash\";s:51:\"20180520_beyondink_679c2358b7dae1772147180611041436\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:71:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-snapshots/tmp\";s:8:\"StoreURL\";s:61:\"https://beyondink.alluredigitalmarketing.com.au/wp-snapshots/\";s:8:\"ScanFile\";s:61:\"20180520_beyondink_679c2358b7dae1772147180611041436_scan.json\";s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:6:\"Status\";N;s:6:\"WPUser\";s:22:\"alluredigitalmarketing\";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:63:\"20180520_beyondink_679c2358b7dae1772147180611041436_archive.zip\";s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:54:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au\";s:4:\"Size\";i:156073834;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\";r:1;s:29:\"\0DUP_Archive\0tmpFilterDirsAll\";a:0:{}s:24:\"\0DUP_Archive\0wpCorePaths\";a:6:{i:0;s:63:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-admin\";i:1;s:73:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-content/uploads\";i:2;s:75:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-content/languages\";i:3;s:73:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-content/plugins\";i:4;s:72:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-content/themes\";i:5;s:66:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-includes\";}}s:9:\"Installer\";O:13:\"DUP_Installer\":7:{s:4:\"File\";s:65:\"20180520_beyondink_679c2358b7dae1772147180611041436_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\";O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2018-06-11 04:14:36\";s:7:\"Version\";s:6:\"1.2.38\";s:9:\"VersionWP\";s:5:\"4.9.6\";s:9:\"VersionDB\";s:6:\"5.6.39\";s:10:\"VersionPHP\";s:6:\"7.0.30\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";N;s:4:\"Name\";s:18:\"20180520_beyondink\";s:4:\"Hash\";s:32:\"679c2358b7dae1772147180611041436\";s:8:\"NameHash\";s:51:\"20180520_beyondink_679c2358b7dae1772147180611041436\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:71:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-snapshots/tmp\";s:8:\"StoreURL\";s:61:\"https://beyondink.alluredigitalmarketing.com.au/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\";r:67;s:8:\"Database\";O:12:\"DUP_Database\":13:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";i:2452619;s:4:\"File\";s:64:\"20180520_beyondink_679c2358b7dae1772147180611041436_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\";s:136:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-snapshots/tmp/20180520_beyondink_679c2358b7dae1772147180611041436_database.sql\";s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;}}}s:8:\"Database\";r:97;}");
INSERT INTO `wp_duplicator_packages` VALUES("6", "20180520_beyondink", "8e94992caf5b23b07618180611042026", "100", "2018-06-11 04:20:32", "alluredigitalmarketing", "O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2018-06-11 04:20:26\";s:7:\"Version\";s:6:\"1.2.38\";s:9:\"VersionWP\";s:5:\"4.9.6\";s:9:\"VersionDB\";s:6:\"5.6.39\";s:10:\"VersionPHP\";s:6:\"7.0.30\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";i:6;s:4:\"Name\";s:18:\"20180520_beyondink\";s:4:\"Hash\";s:32:\"8e94992caf5b23b07618180611042026\";s:8:\"NameHash\";s:51:\"20180520_beyondink_8e94992caf5b23b07618180611042026\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:71:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-snapshots/tmp\";s:8:\"StoreURL\";s:61:\"https://beyondink.alluredigitalmarketing.com.au/wp-snapshots/\";s:8:\"ScanFile\";s:61:\"20180520_beyondink_8e94992caf5b23b07618180611042026_scan.json\";s:7:\"Runtime\";s:9:\"8.54 sec.\";s:7:\"ExeSize\";s:8:\"445.94KB\";s:7:\"ZipSize\";s:8:\"190.22KB\";s:6:\"Status\";N;s:6:\"WPUser\";s:22:\"alluredigitalmarketing\";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:1;s:4:\"File\";s:63:\"20180520_beyondink_8e94992caf5b23b07618180611042026_archive.zip\";s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:54:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au\";s:4:\"Size\";i:194781;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\";r:1;s:29:\"\0DUP_Archive\0tmpFilterDirsAll\";a:0:{}s:24:\"\0DUP_Archive\0wpCorePaths\";a:6:{i:0;s:63:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-admin\";i:1;s:73:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-content/uploads\";i:2;s:75:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-content/languages\";i:3;s:73:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-content/plugins\";i:4;s:72:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-content/themes\";i:5;s:66:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-includes\";}}s:9:\"Installer\";O:13:\"DUP_Installer\":7:{s:4:\"File\";s:65:\"20180520_beyondink_8e94992caf5b23b07618180611042026_installer.php\";s:4:\"Size\";i:456645;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:1;}s:8:\"Database\";O:12:\"DUP_Database\":13:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";i:2457157;s:4:\"File\";s:64:\"20180520_beyondink_8e94992caf5b23b07618180611042026_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\";s:136:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-snapshots/tmp/20180520_beyondink_8e94992caf5b23b07618180611042026_database.sql\";s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;}}");
INSERT INTO `wp_duplicator_packages` VALUES("7", "20180520_beyondink", "16002fd1cf65e4206058180611042513", "50", "2018-06-11 04:27:05", "alluredigitalmarketing", "O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2018-06-11 04:25:13\";s:7:\"Version\";s:6:\"1.2.38\";s:9:\"VersionWP\";s:5:\"4.9.6\";s:9:\"VersionDB\";s:6:\"5.6.39\";s:10:\"VersionPHP\";s:6:\"7.0.30\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";i:7;s:4:\"Name\";s:18:\"20180520_beyondink\";s:4:\"Hash\";s:32:\"16002fd1cf65e4206058180611042513\";s:8:\"NameHash\";s:51:\"20180520_beyondink_16002fd1cf65e4206058180611042513\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:71:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-snapshots/tmp\";s:8:\"StoreURL\";s:61:\"https://beyondink.alluredigitalmarketing.com.au/wp-snapshots/\";s:8:\"ScanFile\";s:61:\"20180520_beyondink_16002fd1cf65e4206058180611042513_scan.json\";s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:6:\"Status\";N;s:6:\"WPUser\";s:22:\"alluredigitalmarketing\";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:63:\"20180520_beyondink_16002fd1cf65e4206058180611042513_archive.zip\";s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:54:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au\";s:4:\"Size\";i:156077691;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\";r:1;s:29:\"\0DUP_Archive\0tmpFilterDirsAll\";a:0:{}s:24:\"\0DUP_Archive\0wpCorePaths\";a:6:{i:0;s:63:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-admin\";i:1;s:73:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-content/uploads\";i:2;s:75:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-content/languages\";i:3;s:73:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-content/plugins\";i:4;s:72:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-content/themes\";i:5;s:66:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-includes\";}}s:9:\"Installer\";O:13:\"DUP_Installer\":7:{s:4:\"File\";s:65:\"20180520_beyondink_16002fd1cf65e4206058180611042513_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\";O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2018-06-11 04:25:13\";s:7:\"Version\";s:6:\"1.2.38\";s:9:\"VersionWP\";s:5:\"4.9.6\";s:9:\"VersionDB\";s:6:\"5.6.39\";s:10:\"VersionPHP\";s:6:\"7.0.30\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";N;s:4:\"Name\";s:18:\"20180520_beyondink\";s:4:\"Hash\";s:32:\"16002fd1cf65e4206058180611042513\";s:8:\"NameHash\";s:51:\"20180520_beyondink_16002fd1cf65e4206058180611042513\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:71:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-snapshots/tmp\";s:8:\"StoreURL\";s:61:\"https://beyondink.alluredigitalmarketing.com.au/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\";r:67;s:8:\"Database\";O:12:\"DUP_Database\":13:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";i:2461045;s:4:\"File\";s:64:\"20180520_beyondink_16002fd1cf65e4206058180611042513_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\";s:136:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-snapshots/tmp/20180520_beyondink_16002fd1cf65e4206058180611042513_database.sql\";s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;}}}s:8:\"Database\";r:97;}");
INSERT INTO `wp_duplicator_packages` VALUES("8", "20180520_beyondink", "59705126da85a7a73383180828031853", "20", "2018-08-28 03:22:19", "alluredigitalmarketing", "O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2018-08-28 03:18:53\";s:7:\"Version\";s:6:\"1.2.38\";s:9:\"VersionWP\";s:5:\"4.9.8\";s:9:\"VersionDB\";s:6:\"5.6.39\";s:10:\"VersionPHP\";s:6:\"7.0.31\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";i:8;s:4:\"Name\";s:18:\"20180520_beyondink\";s:4:\"Hash\";s:32:\"59705126da85a7a73383180828031853\";s:8:\"NameHash\";s:51:\"20180520_beyondink_59705126da85a7a73383180828031853\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:71:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-snapshots/tmp\";s:8:\"StoreURL\";s:61:\"https://beyondink.alluredigitalmarketing.com.au/wp-snapshots/\";s:8:\"ScanFile\";s:61:\"20180520_beyondink_59705126da85a7a73383180828031853_scan.json\";s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:6:\"Status\";N;s:6:\"WPUser\";s:22:\"alluredigitalmarketing\";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:63:\"20180520_beyondink_59705126da85a7a73383180828031853_archive.zip\";s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:54:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au\";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-08-28 03:18:53\";s:7:\"Version\";s:6:\"1.2.38\";s:9:\"VersionWP\";s:5:\"4.9.8\";s:9:\"VersionDB\";s:6:\"5.6.39\";s:10:\"VersionPHP\";s:6:\"7.0.31\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";N;s:4:\"Name\";s:18:\"20180520_beyondink\";s:4:\"Hash\";s:32:\"59705126da85a7a73383180828031853\";s:8:\"NameHash\";s:51:\"20180520_beyondink_59705126da85a7a73383180828031853\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:71:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-snapshots/tmp\";s:8:\"StoreURL\";s:61:\"https://beyondink.alluredigitalmarketing.com.au/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:65:\"20180520_beyondink_59705126da85a7a73383180828031853_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:64:\"20180520_beyondink_59705126da85a7a73383180828031853_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:63:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-admin\";i:1;s:73:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-content/uploads\";i:2;s:75:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-content/languages\";i:3;s:73:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-content/plugins\";i:4;s:72:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-content/themes\";i:5;s:66:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-includes\";}}s:9:\"Installer\";r:80;s:8:\"Database\";r:88;}");

/* INSERT TABLE DATA: wp_options */
INSERT INTO `wp_options` VALUES("1", "siteurl", "https://beyondink.alluredigitalmarketing.com.au", "yes");
INSERT INTO `wp_options` VALUES("2", "home", "https://beyondink.alluredigitalmarketing.com.au", "yes");
INSERT INTO `wp_options` VALUES("3", "blogname", "Beyond Ink", "yes");
INSERT INTO `wp_options` VALUES("4", "blogdescription", "Design innovation. Building excellence.", "yes");
INSERT INTO `wp_options` VALUES("5", "users_can_register", "0", "yes");
INSERT INTO `wp_options` VALUES("6", "admin_email", "stephanie@alluredigitalmarketing.com.au", "yes");
INSERT INTO `wp_options` VALUES("7", "start_of_week", "1", "yes");
INSERT INTO `wp_options` VALUES("8", "use_balanceTags", "0", "yes");
INSERT INTO `wp_options` VALUES("9", "use_smilies", "1", "yes");
INSERT INTO `wp_options` VALUES("10", "require_name_email", "1", "yes");
INSERT INTO `wp_options` VALUES("11", "comments_notify", "1", "yes");
INSERT INTO `wp_options` VALUES("12", "posts_per_rss", "10", "yes");
INSERT INTO `wp_options` VALUES("13", "rss_use_excerpt", "0", "yes");
INSERT INTO `wp_options` VALUES("14", "mailserver_url", "mail.example.com", "yes");
INSERT INTO `wp_options` VALUES("15", "mailserver_login", "login@example.com", "yes");
INSERT INTO `wp_options` VALUES("16", "mailserver_pass", "password", "yes");
INSERT INTO `wp_options` VALUES("17", "mailserver_port", "110", "yes");
INSERT INTO `wp_options` VALUES("18", "default_category", "1", "yes");
INSERT INTO `wp_options` VALUES("19", "default_comment_status", "open", "yes");
INSERT INTO `wp_options` VALUES("20", "default_ping_status", "open", "yes");
INSERT INTO `wp_options` VALUES("21", "default_pingback_flag", "0", "yes");
INSERT INTO `wp_options` VALUES("22", "posts_per_page", "10", "yes");
INSERT INTO `wp_options` VALUES("23", "date_format", "F j, Y", "yes");
INSERT INTO `wp_options` VALUES("24", "time_format", "g:i a", "yes");
INSERT INTO `wp_options` VALUES("25", "links_updated_date_format", "F j, Y g:i a", "yes");
INSERT INTO `wp_options` VALUES("26", "comment_moderation", "0", "yes");
INSERT INTO `wp_options` VALUES("27", "moderation_notify", "1", "yes");
INSERT INTO `wp_options` VALUES("28", "permalink_structure", "/%postname%/", "yes");
INSERT INTO `wp_options` VALUES("30", "hack_file", "0", "yes");
INSERT INTO `wp_options` VALUES("31", "blog_charset", "UTF-8", "yes");
INSERT INTO `wp_options` VALUES("32", "moderation_keys", "", "no");
INSERT INTO `wp_options` VALUES("33", "active_plugins", "a:4:{i:0;s:25:\"duplicator/duplicator.php\";i:1;s:49:\"elegant-themes-support/elegant-themes-support.php\";i:2;s:27:\"redirection/redirection.php\";i:3;s:24:\"wordpress-seo/wp-seo.php\";}", "yes");
INSERT INTO `wp_options` VALUES("34", "category_base", "", "yes");
INSERT INTO `wp_options` VALUES("35", "ping_sites", "http://rpc.pingomatic.com/", "yes");
INSERT INTO `wp_options` VALUES("36", "comment_max_links", "2", "yes");
INSERT INTO `wp_options` VALUES("37", "gmt_offset", "0", "yes");
INSERT INTO `wp_options` VALUES("38", "default_email_category", "1", "yes");
INSERT INTO `wp_options` VALUES("39", "recently_edited", "", "no");
INSERT INTO `wp_options` VALUES("40", "template", "Divi", "yes");
INSERT INTO `wp_options` VALUES("41", "stylesheet", "Divi-child", "yes");
INSERT INTO `wp_options` VALUES("42", "comment_whitelist", "1", "yes");
INSERT INTO `wp_options` VALUES("43", "blacklist_keys", "", "no");
INSERT INTO `wp_options` VALUES("44", "comment_registration", "0", "yes");
INSERT INTO `wp_options` VALUES("45", "html_type", "text/html", "yes");
INSERT INTO `wp_options` VALUES("46", "use_trackback", "0", "yes");
INSERT INTO `wp_options` VALUES("47", "default_role", "subscriber", "yes");
INSERT INTO `wp_options` VALUES("48", "db_version", "38590", "yes");
INSERT INTO `wp_options` VALUES("49", "uploads_use_yearmonth_folders", "1", "yes");
INSERT INTO `wp_options` VALUES("50", "upload_path", "", "yes");
INSERT INTO `wp_options` VALUES("51", "blog_public", "0", "yes");
INSERT INTO `wp_options` VALUES("52", "default_link_category", "2", "yes");
INSERT INTO `wp_options` VALUES("53", "show_on_front", "page", "yes");
INSERT INTO `wp_options` VALUES("54", "tag_base", "", "yes");
INSERT INTO `wp_options` VALUES("55", "show_avatars", "1", "yes");
INSERT INTO `wp_options` VALUES("56", "avatar_rating", "G", "yes");
INSERT INTO `wp_options` VALUES("57", "upload_url_path", "", "yes");
INSERT INTO `wp_options` VALUES("58", "thumbnail_size_w", "150", "yes");
INSERT INTO `wp_options` VALUES("59", "thumbnail_size_h", "150", "yes");
INSERT INTO `wp_options` VALUES("60", "thumbnail_crop", "1", "yes");
INSERT INTO `wp_options` VALUES("61", "medium_size_w", "300", "yes");
INSERT INTO `wp_options` VALUES("62", "medium_size_h", "300", "yes");
INSERT INTO `wp_options` VALUES("63", "avatar_default", "mystery", "yes");
INSERT INTO `wp_options` VALUES("64", "large_size_w", "1024", "yes");
INSERT INTO `wp_options` VALUES("65", "large_size_h", "1024", "yes");
INSERT INTO `wp_options` VALUES("66", "image_default_link_type", "none", "yes");
INSERT INTO `wp_options` VALUES("67", "image_default_size", "", "yes");
INSERT INTO `wp_options` VALUES("68", "image_default_align", "", "yes");
INSERT INTO `wp_options` VALUES("69", "close_comments_for_old_posts", "0", "yes");
INSERT INTO `wp_options` VALUES("70", "close_comments_days_old", "14", "yes");
INSERT INTO `wp_options` VALUES("71", "thread_comments", "1", "yes");
INSERT INTO `wp_options` VALUES("72", "thread_comments_depth", "5", "yes");
INSERT INTO `wp_options` VALUES("73", "page_comments", "0", "yes");
INSERT INTO `wp_options` VALUES("74", "comments_per_page", "50", "yes");
INSERT INTO `wp_options` VALUES("75", "default_comments_page", "newest", "yes");
INSERT INTO `wp_options` VALUES("76", "comment_order", "asc", "yes");
INSERT INTO `wp_options` VALUES("77", "sticky_posts", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("78", "widget_categories", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("79", "widget_text", "a:3:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:242:\"<h4>Beyond Ink</h4>\r\n<strong>Address:</strong> 75 Mount Barker Road Hahndorf SA 5245\r\n<strong>Phone:</strong> 08 8388 1179\r\n<strong>Email: </strong><a href=\"admin@beyondink.com.au\" target=\"_blank\" rel=\"noopener\">admin@beyondink.com.au</a>\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}}", "yes");
INSERT INTO `wp_options` VALUES("80", "widget_rss", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("81", "uninstall_plugins", "a:1:{s:27:\"redirection/redirection.php\";a:2:{i:0;s:17:\"Redirection_Admin\";i:1;s:16:\"plugin_uninstall\";}}", "no");
INSERT INTO `wp_options` VALUES("82", "timezone_string", "", "yes");
INSERT INTO `wp_options` VALUES("83", "page_for_posts", "0", "yes");
INSERT INTO `wp_options` VALUES("84", "page_on_front", "6", "yes");
INSERT INTO `wp_options` VALUES("85", "default_post_format", "0", "yes");
INSERT INTO `wp_options` VALUES("86", "link_manager_enabled", "0", "yes");
INSERT INTO `wp_options` VALUES("87", "finished_splitting_shared_terms", "1", "yes");
INSERT INTO `wp_options` VALUES("88", "site_icon", "0", "yes");
INSERT INTO `wp_options` VALUES("89", "medium_large_size_w", "768", "yes");
INSERT INTO `wp_options` VALUES("90", "medium_large_size_h", "0", "yes");
INSERT INTO `wp_options` VALUES("91", "initial_db_version", "38590", "yes");
INSERT INTO `wp_options` VALUES("92", "wp_user_roles", "a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:62:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:20:\"wpseo_manage_options\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:35:{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:15:\"wpseo_bulk_edit\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:13:\"wpseo_manager\";a:2:{s:4:\"name\";s:11:\"SEO Manager\";s:12:\"capabilities\";a:37:{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:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;s:20:\"wpseo_manage_options\";b:1;}}s:12:\"wpseo_editor\";a:2:{s:4:\"name\";s:10:\"SEO Editor\";s:12:\"capabilities\";a:36:{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:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;}}}", "yes");
INSERT INTO `wp_options` VALUES("93", "fresh_site", "0", "yes");
INSERT INTO `wp_options` VALUES("94", "widget_search", "a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("95", "widget_recent-posts", "a:2:{i:2;a:3:{s:5:\"title\";s:12:\"Recent Posts\";s:6:\"number\";i:5;s:9:\"show_date\";b:0;}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("96", "widget_recent-comments", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("97", "widget_archives", "a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("98", "widget_meta", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("99", "sidebars_widgets", "a:7:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:10:\"archives-2\";}s:9:\"sidebar-2\";a:1:{i:0;s:6:\"text-3\";}s:9:\"sidebar-3\";a:0:{}s:9:\"sidebar-4\";a:0:{}s:9:\"sidebar-5\";a:0:{}s:13:\"array_version\";i:3;}", "yes");
INSERT INTO `wp_options` VALUES("1330", "_site_transient_timeout_theme_roots", "1535426649", "no");
INSERT INTO `wp_options` VALUES("1331", "_site_transient_theme_roots", "a:2:{s:10:\"Divi-child\";s:7:\"/themes\";s:4:\"Divi\";s:7:\"/themes\";}", "no");
INSERT INTO `wp_options` VALUES("1332", "_site_transient_update_plugins", "O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1535424851;s:7:\"checked\";a:4:{s:25:\"duplicator/duplicator.php\";s:6:\"1.2.38\";s:49:\"elegant-themes-support/elegant-themes-support.php\";s:3:\"1.3\";s:27:\"redirection/redirection.php\";s:3:\"3.4\";s:24:\"wordpress-seo/wp-seo.php\";s:3:\"7.3\";}s:8:\"response\";a:2:{s:25:\"duplicator/duplicator.php\";O:8:\"stdClass\":12:{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.42\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/duplicator/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/duplicator.1.2.42.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:6:\"tested\";s:5:\"4.9.8\";s:12:\"requires_php\";s:6:\"5.2.17\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:27:\"w.org/plugins/wordpress-seo\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"new_version\";s:3:\"8.0\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/wordpress-seo.8.0.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:66:\"https://ps.w.org/wordpress-seo/assets/icon-256x256.png?rev=1834347\";s:2:\"1x\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=1859687\";s:3:\"svg\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=1859687\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500.png?rev=1843435\";s:2:\"1x\";s:68:\"https://ps.w.org/wordpress-seo/assets/banner-772x250.png?rev=1843435\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500-rtl.png?rev=1843435\";s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-seo/assets/banner-772x250-rtl.png?rev=1843435\";}s:6:\"tested\";s:5:\"4.9.8\";s:12:\"requires_php\";s:5:\"5.2.4\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:1:{s:27:\"redirection/redirection.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/redirection\";s:4:\"slug\";s:11:\"redirection\";s:6:\"plugin\";s:27:\"redirection/redirection.php\";s:11:\"new_version\";s:3:\"3.4\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/redirection/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/redirection.3.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/redirection/assets/icon-256x256.jpg?rev=983639\";s:2:\"1x\";s:63:\"https://ps.w.org/redirection/assets/icon-128x128.jpg?rev=983640\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/redirection/assets/banner-1544x500.jpg?rev=983641\";s:2:\"1x\";s:65:\"https://ps.w.org/redirection/assets/banner-772x250.jpg?rev=983642\";}s:11:\"banners_rtl\";a:0:{}}}}", "no");
INSERT INTO `wp_options` VALUES("100", "widget_pages", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("101", "widget_calendar", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("102", "widget_media_audio", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("103", "widget_media_image", "a:4:{s:12:\"_multiwidget\";i:1;i:3;a:15:{s:13:\"attachment_id\";i:78;s:3:\"url\";s:119:\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Beyond-Ink-Logo-White-Transparent-300x67.png\";s:5:\"title\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:5:\"width\";i:1723;s:6:\"height\";i:382;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:0:\"\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";}i:4;a:15:{s:13:\"attachment_id\";i:78;s:3:\"url\";s:119:\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Beyond-Ink-Logo-White-Transparent-300x67.png\";s:5:\"title\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:5:\"width\";i:1723;s:6:\"height\";i:382;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:0:\"\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";}i:5;a:15:{s:13:\"attachment_id\";i:78;s:3:\"url\";s:119:\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Beyond-Ink-Logo-White-Transparent-300x67.png\";s:5:\"title\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:5:\"width\";i:1723;s:6:\"height\";i:382;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:0:\"\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";}}", "yes");
INSERT INTO `wp_options` VALUES("104", "widget_media_gallery", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("105", "widget_media_video", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("106", "nonce_key", "DG}pB*|_V`4*/_cpNPt#,(aA/,,-&,<v)@t>gOeJC:i%? =YBOO-],#^J}BS)CZ;", "no");
INSERT INTO `wp_options` VALUES("107", "nonce_salt", "g>8%VG1L2UC`;o/(qF`SaKT@YV>d*o{g/o$-e!k7)6>Dv4=!a:_A3!tVX]W)&Y?q", "no");
INSERT INTO `wp_options` VALUES("108", "widget_tag_cloud", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("109", "widget_nav_menu", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("110", "widget_custom_html", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("111", "cron", "a:9:{i:1535428723;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:1535453456;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:1535457518;a:1:{s:22:\"redirection_log_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:1535496706;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1535497284;a:1:{s:19:\"wpseo-reindex-links\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1535497354;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:1535497355;a:1:{s:21:\"et_builder_fonts_cron\";a:1:{s:32:\"552cbb9d6515dadbbc4718ad75114f08\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:1:{s:8:\"interval\";s:5:\"daily\";}s:8:\"interval\";i:86400;}}}i:1537743354;a:1:{s:32:\"et_core_page_resource_auto_clear\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:7:\"monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2592000;}}}s:7:\"version\";i:2;}", "yes");
INSERT INTO `wp_options` VALUES("112", "theme_mods_twentyseventeen", "a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1524783353;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}", "yes");
INSERT INTO `wp_options` VALUES("131", "can_compress_scripts", "1", "no");
INSERT INTO `wp_options` VALUES("122", "secure_auth_key", "5>kh)#@T|5Gr97[%W%5)!p==`}jNg1k^Ak?c6b8=651yA<^1Oc/+Pbx/_P9.*Qly", "no");
INSERT INTO `wp_options` VALUES("123", "secure_auth_salt", "=6h(yIe(~SUM&fFka/[f=`K&@m6ra^3lm3MEZouz+81_Z,/{^bZN ATQkaRJ]K)Z", "no");
INSERT INTO `wp_options` VALUES("147", "current_theme", "Divi Child", "yes");
INSERT INTO `wp_options` VALUES("148", "theme_mods_Divi", "a:6:{i:0;b:0;s:18:\"custom_css_post_id\";i:-1;s:16:\"et_pb_css_synced\";s:3:\"yes\";s:18:\"nav_menu_locations\";a:0:{}s:39:\"et_updated_layouts_built_for_post_types\";s:3:\"yes\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1524783549;s:4:\"data\";a:6:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:9:\"sidebar-4\";a:0:{}s:9:\"sidebar-5\";a:0:{}}}}", "yes");
INSERT INTO `wp_options` VALUES("149", "theme_switched", "", "yes");
INSERT INTO `wp_options` VALUES("150", "et_pb_cache_notice", "a:1:{s:7:\"3.0.106\";s:6:\"ignore\";}", "yes");
INSERT INTO `wp_options` VALUES("170", "_site_transient_et_update_themes", "O:8:\"stdClass\":3:{s:7:\"checked\";a:2:{s:10:\"Divi-child\";s:3:\"3.x\";s:4:\"Divi\";s:7:\"3.0.106\";}s:8:\"response\";a:1:{s:4:\"Divi\";a:3:{s:11:\"new_version\";s:6:\"3.10.2\";s:3:\"url\";s:52:\"https://www.elegantthemes.com/api/changelog/divi.txt\";s:7:\"package\";s:150:\"https://www.elegantthemes.com/api/api_downloads.php?api_update=1&theme=Divi&api_key=090ca03a5e119d32ccbf5664b8f4a24bef234fe6&username=stephanie.hs1202\";}}s:12:\"last_checked\";i:1532433510;}", "no");
INSERT INTO `wp_options` VALUES("169", "et_account_status", "active", "no");
INSERT INTO `wp_options` VALUES("155", "et_core_version", "3.0.106", "yes");
INSERT INTO `wp_options` VALUES("157", "et_divi", "a:154:{s:39:\"static_css_custom_css_safety_check_done\";b:1;s:23:\"2_5_flush_rewrite_rules\";s:4:\"done\";s:25:\"3_0_flush_rewrite_rules_2\";s:4:\"done\";s:27:\"divi_skip_font_subset_force\";b:1;s:40:\"divi_email_provider_credentials_migrated\";b:1;s:15:\"divi_1_3_images\";s:7:\"checked\";s:21:\"et_pb_layouts_updated\";b:1;s:30:\"library_removed_legacy_layouts\";b:1;s:30:\"divi_2_4_documentation_message\";s:9:\"triggered\";s:9:\"divi_logo\";s:104:\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Beyond-Ink-Logo-Rectangle.jpg\";s:12:\"divi_favicon\";s:86:\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Favicon.jpg\";s:14:\"divi_fixed_nav\";s:2:\"on\";s:26:\"divi_gallery_layout_enable\";s:5:\"false\";s:18:\"divi_color_palette\";s:63:\"#000000|#ffffff|#e02b20|#e09900|#edf000|#7cda24|#0c71c3|#8300e9\";s:15:\"divi_grab_image\";s:5:\"false\";s:15:\"divi_blog_style\";s:5:\"false\";s:12:\"divi_sidebar\";s:16:\"et_right_sidebar\";s:22:\"divi_shop_page_sidebar\";s:16:\"et_right_sidebar\";s:23:\"divi_show_facebook_icon\";s:2:\"on\";s:22:\"divi_show_twitter_icon\";s:2:\"on\";s:21:\"divi_show_google_icon\";s:2:\"on\";s:18:\"divi_show_rss_icon\";s:5:\"false\";s:17:\"divi_facebook_url\";s:35:\"https://www.facebook.com/BeyondInk/\";s:16:\"divi_twitter_url\";s:32:\"https://twitter.com/beyondinkadl\";s:15:\"divi_google_url\";s:1:\"#\";s:12:\"divi_rss_url\";s:0:\"\";s:34:\"divi_woocommerce_archive_num_posts\";i:9;s:17:\"divi_catnum_posts\";i:6;s:21:\"divi_archivenum_posts\";i:5;s:20:\"divi_searchnum_posts\";i:5;s:17:\"divi_tagnum_posts\";i:5;s:16:\"divi_date_format\";s:6:\"M j, Y\";s:16:\"divi_use_excerpt\";s:5:\"false\";s:26:\"divi_responsive_shortcodes\";s:2:\"on\";s:33:\"divi_gf_enable_all_character_sets\";s:5:\"false\";s:16:\"divi_back_to_top\";s:2:\"on\";s:18:\"divi_smooth_scroll\";s:5:\"false\";s:25:\"divi_disable_translations\";s:5:\"false\";s:27:\"divi_minify_combine_scripts\";s:2:\"on\";s:26:\"divi_minify_combine_styles\";s:2:\"on\";s:15:\"divi_custom_css\";s:882:\"#et-secondary-nav li ul, #top-header {background-color: #9dd00f;}\r\n#top-menu .current-menu-item a::before,\r\n#top-menu .current_page_item a::before {\r\n content: \"\";\r\n position: absolute;\r\n z-index: 2;\r\n left: 0;\r\n right: 0;\r\n}\r\n#top-menu li a:before {\r\n content: \"\";\r\n position: absolute;\r\n z-index: -2;\r\n left: 0;\r\n right: 100%;\r\n bottom: 50%;\r\n background: #9dd00f; /*** COLOR OF THE LINE ***/\r\n height: 1px; /*** THICKNESS OF THE LINE ***/\r\n -webkit-transition-property: right;\r\n transition-property: right;\r\n -webkit-transition-duration: 0.3s;\r\n transition-duration: 0.3s;\r\n -webkit-transition-timing-function: ease-out;\r\n transition-timing-function: ease-out;\r\n}\r\n#top-menu li a:hover {\r\n opacity: 1 !important;\r\n}\r\n#top-menu li a:hover:before {\r\n right: 0;\r\n}\r\n#top-menu li li a:before {\r\n bottom: 10%;\r\n}\r\n.centerGallery .et_pb_gallery_item:first-child {\r\nmargin-left: 25%;\r\n}\";s:21:\"divi_enable_dropdowns\";s:2:\"on\";s:14:\"divi_home_link\";s:2:\"on\";s:15:\"divi_sort_pages\";s:10:\"post_title\";s:15:\"divi_order_page\";s:3:\"asc\";s:22:\"divi_tiers_shown_pages\";i:3;s:32:\"divi_enable_dropdowns_categories\";s:2:\"on\";s:21:\"divi_categories_empty\";s:2:\"on\";s:27:\"divi_tiers_shown_categories\";i:3;s:13:\"divi_sort_cat\";s:4:\"name\";s:14:\"divi_order_cat\";s:3:\"asc\";s:20:\"divi_disable_toptier\";s:5:\"false\";s:25:\"divi_scroll_to_anchor_fix\";s:5:\"false\";s:21:\"et_pb_static_css_file\";s:2:\"on\";s:19:\"et_pb_css_in_footer\";s:3:\"off\";s:25:\"et_pb_product_tour_global\";s:2:\"on\";s:14:\"divi_postinfo2\";a:2:{i:0;s:4:\"date\";i:1;s:10:\"categories\";}s:22:\"divi_show_postcomments\";s:5:\"false\";s:15:\"divi_thumbnails\";s:2:\"on\";s:20:\"divi_page_thumbnails\";s:5:\"false\";s:23:\"divi_show_pagescomments\";s:5:\"false\";s:14:\"divi_postinfo1\";a:3:{i:0;s:6:\"author\";i:1;s:4:\"date\";i:2;s:10:\"categories\";}s:21:\"divi_thumbnails_index\";s:2:\"on\";s:19:\"divi_seo_home_title\";s:5:\"false\";s:25:\"divi_seo_home_description\";s:5:\"false\";s:22:\"divi_seo_home_keywords\";s:5:\"false\";s:23:\"divi_seo_home_canonical\";s:5:\"false\";s:23:\"divi_seo_home_titletext\";s:0:\"\";s:29:\"divi_seo_home_descriptiontext\";s:0:\"\";s:26:\"divi_seo_home_keywordstext\";s:0:\"\";s:18:\"divi_seo_home_type\";s:27:\"BlogName | Blog description\";s:22:\"divi_seo_home_separate\";s:3:\" | \";s:21:\"divi_seo_single_title\";s:5:\"false\";s:27:\"divi_seo_single_description\";s:5:\"false\";s:24:\"divi_seo_single_keywords\";s:5:\"false\";s:25:\"divi_seo_single_canonical\";s:5:\"false\";s:27:\"divi_seo_single_field_title\";s:9:\"seo_title\";s:33:\"divi_seo_single_field_description\";s:15:\"seo_description\";s:30:\"divi_seo_single_field_keywords\";s:12:\"seo_keywords\";s:20:\"divi_seo_single_type\";s:21:\"Post title | BlogName\";s:24:\"divi_seo_single_separate\";s:3:\" | \";s:24:\"divi_seo_index_canonical\";s:5:\"false\";s:26:\"divi_seo_index_description\";s:5:\"false\";s:19:\"divi_seo_index_type\";s:24:\"Category name | BlogName\";s:23:\"divi_seo_index_separate\";s:3:\" | \";s:28:\"divi_integrate_header_enable\";s:2:\"on\";s:26:\"divi_integrate_body_enable\";s:2:\"on\";s:31:\"divi_integrate_singletop_enable\";s:2:\"on\";s:34:\"divi_integrate_singlebottom_enable\";s:2:\"on\";s:21:\"divi_integration_head\";s:138:\"<script type=\"text/javascript\">\r\njQuery(document).ready(function(){\r\njQuery(\".et-social-icon a\").attr(\'target\', \'_blank\');\r\n});\r\n</script>\";s:21:\"divi_integration_body\";s:0:\"\";s:27:\"divi_integration_single_top\";s:0:\"\";s:30:\"divi_integration_single_bottom\";s:0:\"\";s:15:\"divi_468_enable\";s:5:\"false\";s:14:\"divi_468_image\";s:0:\"\";s:12:\"divi_468_url\";s:0:\"\";s:16:\"divi_468_adsense\";s:0:\"\";s:24:\"footer_widget_text_color\";s:7:\"#000000\";s:24:\"footer_widget_link_color\";s:7:\"#000000\";s:12:\"accent_color\";s:7:\"#9dd00f\";s:10:\"link_color\";s:7:\"#9dd00f\";s:10:\"font_color\";s:7:\"#000000\";s:12:\"header_color\";s:7:\"#9dd00f\";s:13:\"nav_fullwidth\";b:1;s:11:\"menu_height\";i:89;s:11:\"logo_height\";i:100;s:9:\"menu_link\";s:7:\"#000000\";s:16:\"menu_link_active\";s:7:\"#9dd00f\";s:31:\"primary_nav_dropdown_line_color\";s:7:\"#9dd00f\";s:31:\"primary_nav_dropdown_link_color\";s:7:\"#000000\";s:16:\"secondary_nav_bg\";s:7:\"#535353\";s:25:\"secondary_nav_dropdown_bg\";s:7:\"#000000\";s:24:\"show_header_social_icons\";b:1;s:12:\"phone_number\";s:15:\" (08) 8388 1179\";s:12:\"header_email\";s:22:\"admin@beyondink.com.au\";s:23:\"secondary_nav_fullwidth\";b:0;s:19:\"product_tour_status\";a:1:{i:1;s:3:\"off\";}s:20:\"all_buttons_bg_color\";s:7:\"#9dd00f\";s:28:\"all_buttons_text_color_hover\";s:7:\"#000000\";s:22:\"footer_menu_text_color\";s:7:\"#000000\";s:29:\"footer_menu_active_link_color\";s:7:\"#000000\";s:28:\"footer_menu_background_color\";s:7:\"#ffffff\";s:27:\"bottom_bar_background_color\";s:7:\"#000000\";s:21:\"bottom_bar_text_color\";s:7:\"#ffffff\";s:28:\"bottom_bar_social_icon_color\";s:7:\"#ffffff\";s:29:\"disable_custom_footer_credits\";b:0;s:21:\"custom_footer_credits\";s:18:\"© Beyond Ink 2018\";s:32:\"et_fb_pref_settings_bar_location\";s:6:\"bottom\";s:28:\"et_fb_pref_builder_animation\";s:4:\"true\";s:41:\"et_fb_pref_builder_display_modal_settings\";s:5:\"false\";s:21:\"et_fb_pref_event_mode\";s:5:\"hover\";s:32:\"et_fb_pref_hide_disabled_modules\";s:5:\"false\";s:28:\"et_fb_pref_history_intervals\";i:1;s:27:\"et_fb_pref_modal_preference\";s:7:\"default\";s:30:\"et_fb_pref_modal_snap_location\";s:5:\"false\";s:21:\"et_fb_pref_modal_snap\";s:5:\"false\";s:27:\"et_fb_pref_modal_fullscreen\";s:5:\"false\";s:32:\"et_fb_pref_modal_dimension_width\";i:400;s:33:\"et_fb_pref_modal_dimension_height\";i:394;s:27:\"et_fb_pref_modal_position_x\";i:1092;s:27:\"et_fb_pref_modal_position_y\";i:150;s:24:\"et_fb_pref_toolbar_click\";s:5:\"false\";s:26:\"et_fb_pref_toolbar_desktop\";s:4:\"true\";s:23:\"et_fb_pref_toolbar_grid\";s:5:\"false\";s:24:\"et_fb_pref_toolbar_hover\";s:5:\"false\";s:24:\"et_fb_pref_toolbar_phone\";s:4:\"true\";s:25:\"et_fb_pref_toolbar_tablet\";s:4:\"true\";s:28:\"et_fb_pref_toolbar_wireframe\";s:4:\"true\";s:23:\"et_fb_pref_toolbar_zoom\";s:4:\"true\";s:9:\"footer_bg\";s:7:\"#f3f3f3\";s:14:\"footer_columns\";s:1:\"2\";s:17:\"hide_primary_logo\";b:0;s:15:\"hide_fixed_logo\";b:0;s:27:\"et_pb_clear_templates_cache\";b:1;}", "yes");
INSERT INTO `wp_options` VALUES("124", "logged_in_key", "fTSe;YV1eZb`rB#2?L8-umw0O)}Fg`c$t?+Bd#NKG%Fss-a58^b[HYY9SV$><6,u", "no");
INSERT INTO `wp_options` VALUES("125", "logged_in_salt", "U@!iJ|~:R>6%3zc(U1Jf6X,|^J3ODo;M|4p85zfEs8=mNMU5X(Dbyd0FEiV=]Zz5", "no");
INSERT INTO `wp_options` VALUES("1336", "_transient_timeout_wpseo-statistics-totals", "1535512657", "no");
INSERT INTO `wp_options` VALUES("1337", "_transient_wpseo-statistics-totals", "a:1:{i:1;a:2:{s:6:\"scores\";a:1:{i:0;a:4:{s:8:\"seo_rank\";s:2:\"na\";s:5:\"label\";s:46:\"Posts <strong>without</strong> a focus keyword\";s:5:\"count\";s:1:\"1\";s:4:\"link\";s:124:\"https://beyondink.alluredigitalmarketing.com.au/wp-admin/edit.php?post_status=publish&#038;post_type=post&#038;seo_filter=na\";}}s:8:\"division\";a:5:{s:3:\"bad\";i:0;s:2:\"ok\";i:0;s:4:\"good\";i:0;s:2:\"na\";i:1;s:7:\"noindex\";i:0;}}}", "no");
INSERT INTO `wp_options` VALUES("1338", "_site_transient_timeout_community-events-e6151a689c8993a1f09c8bf6c475b000", "1535469458", "no");
INSERT INTO `wp_options` VALUES("1339", "_site_transient_community-events-e6151a689c8993a1f09c8bf6c475b000", "a:2:{s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"101.185.19.0\";}s:6:\"events\";a:0:{}}", "no");
INSERT INTO `wp_options` VALUES("1340", "_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca", "1535469459", "no");
INSERT INTO `wp_options` VALUES("1341", "_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	Thu, 02 Aug 2018 22:13:06 +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-43581\";s: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:48:\"\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:35:\"WordPress 4.9.8 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:71:\"https://wordpress.org/news/2018/08/wordpress-4-9-8-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, 02 Aug 2018 21:25:41 +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=6165\";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:398:\"We are pleased to announce the immediate availability of WordPress 4.9.8.  This maintenance release fixes 46 bugs, enhancements and blessed tasks, including updating the Twenty Seventeen bundled theme. Following are the highlights of what is now available. “Try Gutenberg” callout Most users will now be presented with a notice in their WordPress dashboard. This “Try Gutenberg” [&#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:10:\"Paul Biron\";s: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:10398:\"<p>We are pleased to announce the immediate availability of WordPress 4.9.8.  This maintenance release fixes 46 bugs, enhancements and blessed tasks, including updating the Twenty Seventeen bundled theme.</p>\n<p><span style=\"font-weight: 400\">Following are the highlights of what is now available.</span></p>\n<h2>“Try Gutenberg” callout</h2>\n<p><span style=\"font-weight: 400\">Most users will now be presented with a notice in their WordPress dashboard. This </span>“Try Gutenberg” is an opportunity for users to use the Gutenberg block editor before it is released in WordPress 5.0.</p>\n<p><img class=\"alignnone wp-image-6168 size-full\" src=\"https://i0.wp.com/wordpress.org/news/files/2018/08/Screen-Shot-2018-08-02-at-11.42.39-am.png?resize=632%2C392&#038;ssl=1\" alt=\"\" width=\"632\" height=\"392\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2018/08/Screen-Shot-2018-08-02-at-11.42.39-am.png?w=2528&amp;ssl=1 2528w, https://i0.wp.com/wordpress.org/news/files/2018/08/Screen-Shot-2018-08-02-at-11.42.39-am.png?resize=300%2C186&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2018/08/Screen-Shot-2018-08-02-at-11.42.39-am.png?resize=768%2C476&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2018/08/Screen-Shot-2018-08-02-at-11.42.39-am.png?resize=1024%2C634&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2018/08/Screen-Shot-2018-08-02-at-11.42.39-am.png?w=1264&amp;ssl=1 1264w, https://i0.wp.com/wordpress.org/news/files/2018/08/Screen-Shot-2018-08-02-at-11.42.39-am.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></p>\n<p>In WordPress 4.9.8, the callout will be shown to the following users:</p>\n<ul>\n<li>If Gutenberg <em>is not</em> installed or activated, the callout will be shown to Admin users on single sites, and Super Admin users on multisites.</li>\n<li>If Gutenberg <em>is</em> installed and activated, the callout will be shown to Contributor users and above.</li>\n<li>If the Classic Editor plugin is installed and activated, the callout will be hidden for all users.</li>\n</ul>\n<p class=\"entry-title\"><span style=\"font-weight: 400\">You can learn more by reading  </span><a href=\"https://make.wordpress.org/core/2018/08/02/try-gutenberg-callout-in-wordpress-4-9-8/\">“Try Gutenberg” Callout in WordPress 4.9.8</a>.</p>\n<h2>Privacy fixes/enhancements</h2>\n<p>This release includes 18 Privacy fixes focused on ensuring consistency and flexibility in the new personal data tools <span style=\"font-weight: 400\">that were </span>added in 4.9.6, including:</p>\n<ul>\n<li>The type of request being confirmed is now included in the subject line for all privacy confirmation emails.</li>\n<li>Improved consistency with site name being used for privacy emails in multisite.</li>\n<li>Pagination for Privacy request admin screens can now be adjusted.</li>\n<li>Increased the test coverage for several core privacy functions.</li>\n</ul>\n<p><a href=\"https://make.wordpress.org/core/2018/08/02/wordpress-4-9-8/\">This post has more information about all of the issues fixed in 4.9.8 if you&#8217;d like to learn more</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.9.8</a> or venture over to Dashboard → Updates and click &#8220;Update Now.&#8221; Sites that support automatic background updates are already beginning to update automatically.</p>\n<p>Thank you to everyone who contributed to WordPress 4.9.8:</p>\n<p><a href=\"https://profiles.wordpress.org/1naveengiri/\">1naveengiri</a>, <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/\">Abdullah Ramzan</a>, <a href=\"https://profiles.wordpress.org/alejandroxlopez/\">alejandroxlopez</a>, <a href=\"https://profiles.wordpress.org/allendav/\">Allen Snook</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/andrewtaylor-1/\">Andrew Taylor</a>, <a href=\"https://profiles.wordpress.org/aryamaaru/\">Arun</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/bph/\">Birgit Pauli-Haack</a>, <a href=\"https://profiles.wordpress.org/bjornw/\">BjornW</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/burhandodhy/\">Burhan Nasir</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/chrislema/\">Chris Lema</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/danieltj/\">Daniel James</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</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/dontstealmyfish/\">dontstealmyfish</a>, <a href=\"https://profiles.wordpress.org/dyrer/\">dyrer</a>, <a href=\"https://profiles.wordpress.org/felipeelia/\">Felipe Elia</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/fclaussen/\">Fernando Claussen</a>, <a href=\"https://profiles.wordpress.org/garetharnold/\">Gareth</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/gm_alex/\">GM_Alex</a>, <a href=\"https://profiles.wordpress.org/idea15/\">Heather Burns</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/jpry/\">Jeremy Pry</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/joen/\">Joen Asmussen</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/spacedmonkey/\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha</a>, <a href=\"https://profiles.wordpress.org/joshuawold/\">JoshuaWold</a>, <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a>, <a href=\"https://profiles.wordpress.org/jrf/\">jrf</a>, <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a>, <a href=\"https://profiles.wordpress.org/khaihong/\">khaihong</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">kjellr</a>, <a href=\"https://profiles.wordpress.org/xkon/\">Konstantinos Xenos</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/leanderiversen/\">Leander Iversen</a>, <a href=\"https://profiles.wordpress.org/leemon/\">leemon</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/matveb/\">Matias Ventura</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/mensmaximus/\">mensmaximus</a>, <a href=\"https://profiles.wordpress.org/mermel/\">mermel</a>, <a href=\"https://profiles.wordpress.org/metalandcoffee/\">metalandcoffee</a>, <a href=\"https://profiles.wordpress.org/michelleweber/\">michelleweber</a>, <a href=\"https://profiles.wordpress.org/dimadin/\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/xpertone/\">Muhammad Kashif</a>, <a href=\"https://profiles.wordpress.org/nao/\">Naoko Takano</a>, <a href=\"https://profiles.wordpress.org/nathanatmoz/\">Nathan Johnson</a>, <a href=\"https://profiles.wordpress.org/ov3rfly/\">Ov3rfly</a>, <a href=\"https://profiles.wordpress.org/palmiak/\">palmiak</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</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/rafsuntaskin/\">Rafsun Chowdhury</a>, <a href=\"https://profiles.wordpress.org/redcastor/\">redcastor</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/pross/\">Simon Prosser</a>, <a href=\"https://profiles.wordpress.org/skoldin/\">skoldin</a>, <a href=\"https://profiles.wordpress.org/spyderbytes/\">spyderbytes</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a>, <a href=\"https://profiles.wordpress.org/sebastienserre/\">Sébastien SERRE</a>, <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/tharsheblows/\">tharsheblows</a>, <a href=\"https://profiles.wordpress.org/thomasplevy/\">Thomas Patrick Levy</a>, <a href=\"https://profiles.wordpress.org/timbowesohft/\">timbowesohft</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/tobifjellner/\">Tor-Bjorn Fjellner</a>, <a href=\"https://profiles.wordpress.org/itowhid06/\">Towhidul Islam</a>, <a href=\"https://profiles.wordpress.org/usmankhalid/\">Usman Khalid</a>, <a href=\"https://profiles.wordpress.org/warmlaundry/\">warmlaundry</a>, <a href=\"https://profiles.wordpress.org/earnjam/\">William Earnhardt</a>, <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a>, and <a href=\"https://profiles.wordpress.org/yuriv/\">YuriV</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:\"6165\";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:48:\"\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:33:\"The Month in WordPress: July 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:68:\"https://wordpress.org/news/2018/08/the-month-in-wordpress-july-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, 01 Aug 2018 09:11: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: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=6158\";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:333:\"With WordPress 5.0 coming closer, there’s lots of work going on all across the project. Read on to learn about how we progressed in July. Release of WordPress 4.9.7 On July 5, WordPress 4.9.7 was released,  fixing one security issue and 17 other bugs across the platform. While this is a minor release, incremental fixes [&#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:6411:\"<p>With WordPress 5.0 coming closer, there’s lots of work going on all across the project. Read on to learn about how we progressed in July.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>Release of WordPress 4.9.7</h2>\n\n<p>On July 5, <a href=\"https://wordpress.org/news/2018/07/wordpress-4-9-7-security-and-maintenance-release/\">WordPress 4.9.7 was released</a>,  fixing one security issue and 17 other bugs across the platform.<br /></p>\n\n<p>While this is a minor release, incremental fixes are essential to keep WordPress running smoothly. Everyone is encouraged to update as soon as possible and to make sure that automatic updates are switched on.<br /></p>\n\n<p>Would you like to get involved in building WordPress Core? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a> and join the #core channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n\n<h2>The New WordPress Editor</h2>\n\n<p>In the upcoming minor release of WordPress, 4.9.8, a new section in the dashboard will feature Gutenberg, the upcoming content editor for WordPress.<br /></p>\n\n<p>While the official release of Gutenberg <a href=\"https://wordpress.org/news/2018/07/update-on-gutenberg/\">is scheduled</a> for the coming months, you can already install it as <a href=\"https://wordpress.org/plugins/gutenberg/\">a plugin</a> to test it out right now. Additionally, <a href=\"https://wordpress.org/gutenberg/\">a brand new demo page</a> is now available — play around with the many features the editor has to offer, without installing it on your own site.<br /></p>\n\n<p>Would you like to help build or test Gutenberg? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a> and join the #core-editor channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n\n<h2>Page Design Updates on WordPress.org</h2>\n\n<p>Bit by bit we’re refreshing the design of WordPress.org. The latest pages to get a new treatment have been <a href=\"https://wordpress.org/download/\">the Download page</a> and <a href=\"https://profiles.wordpress.org/matt/\">user profiles</a>.<br /></p>\n\n<p>The Meta and Design teams worked hard to make these new designs a reality, with notable contributions from <a href=\'https://profiles.wordpress.org/melchoyce/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>melchoyce</a>, <a href=\'https://profiles.wordpress.org/obenland/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>obenland</a>, <a href=\'https://profiles.wordpress.org/mapk/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mapk</a>, and <a href=\'https://profiles.wordpress.org/kjellr/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>kjellr</a>. The new designs enhance the overall look of the site and provide more relevant information to those searching.<br /></p>\n\n<p>Would you like to get involved in the design refresh? Follow the <a href=\"https://make.wordpress.org/meta/\">Meta</a> and <a href=\"https://make.wordpress.org/design/\">Design</a> team blogs and join the #meta and #design channels in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n\n<h2>The First WP-CLI Hack Day</h2>\n\n<p>On Friday July 20, the WP-CLI team <a href=\"https://make.wordpress.org/cli/2018/07/04/wp-cli-hack-day/\">held their first hack day</a> — a global event encouraging people to contribute to the official command line tool for WordPress.<br /></p>\n\n<p>Run by <a href=\'https://profiles.wordpress.org/schlessera/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>schlessera</a>, the event <a href=\"https://make.wordpress.org/cli/2018/07/21/wp-cli-hack-day-results/\"> was a great success</a>. Twelve pull requests were  merged and another 13 submitted. It also included a video chat to give all contributors a space to meet each other and connect directly.<br /></p>\n\n<p>Would  you like to get involved in contributing to WP-CLI? Follow <a href=\"https://make.wordpress.org/cli/\">the team blog</a> and join the #cli 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><li>The WordPress Foundation is <a href=\"https://wordpressfoundation.org/2018/call-for-organizers-introduction-to-open-source-workshops-for-2018/\">looking for local community organizers to run introductory open-source workshops</a> in 2018.</li><li><a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a> compiled <a href=\"https://wordpress.org/news/2018/07/quarterly-updates-q2-2018/\">updates for the last quarter</a> from the contribution teams all across the WordPress project.</li><li>In a great move for internationalization, <a href=\"https://en.blog.wordpress.com/2018/03/29/the-wordpress-mobile-apps-now-support-right-to-left-languages/\">the WordPress Mobile Apps now support right-to-left languages</a>.</li><li><a href=\"https://make.wordpress.org/community/2018/07/10/stripe-is-now-available-to-all-wordcamps/\">WordCamp events can now accept payment via Stripe</a> — PayPal remains an alternative option.</li><li>The WP-CLI team will soon <a href=\"https://make.wordpress.org/cli/2018/07/19/details-on-the-upcoming-major-release/\">release v2.0</a> of the official WordPress command line tool.</li><li>The Fields API project in WordPress Core <a href=\"https://wptavern.com/wordpress-core-fields-api-project-is-seeking-new-leadership\">is looking for a new lead</a> to drive it forward.</li><li>In WordPress 4.9.8, <a href=\"https://make.wordpress.org/core/2018/07/27/registering-metadata-in-4-9-8/\">it will  be possible</a> for developers to fully register the meta fields used by their plugins and themes.</li><li>After many years of hard work, <a href=\"https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards\">v1.0.0 of the WordPress Coding Standards for PHP_CodeSniffer</a> has been released.</li><li>The Mobile team <a href=\"https://make.wordpress.org/mobile/2018/07/31/call-for-testing-wordpress-for-ios-10-6/\">is looking for people to help test</a> v10.6 of WordPress for iOS.</li></ul>\n\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</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:\"6158\";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:51:\"\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:27:\"Quarterly Updates | Q2 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:61:\"https://wordpress.org/news/2018/07/quarterly-updates-q2-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, 16 Jul 2018 14:50: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: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:\"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=6140\";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:347:\"To keep everyone aware of big projects and efforts across WordPress contributor teams, I&#8217;ve reached out to each team&#8217;s listed representatives. I asked each of them to share their Top Priority (and when they hope for it to be completed), as well as their biggest Wins and Worries. Have questions? I&#8217;ve included a link to [&#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:7:\"Josepha\";s: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:15622:\"<p><em>To keep everyone aware of big projects and efforts across WordPress contributor teams, I&#8217;ve reached out to each team&#8217;s <a href=\"https://make.wordpress.org/updates/team-reps/\">listed representatives</a>. I asked each of them to share their Top Priority (and when they hope for it to be completed), as well as their biggest Wins and Worries. Have questions? I&#8217;ve included a link to each team&#8217;s site in the headings.﻿</em></p>\n\n<h2><a href=\"https://make.wordpress.org/accessibility/\">Accessibility</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/rianrietveld/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rianrietveld</a>, <a href=\'https://profiles.wordpress.org/joedolson/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>joedolson</a>, <a href=\'https://profiles.wordpress.org/afercia/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>afercia</a></li>\n	<li><strong>Priority</strong>: Working to make sure that Gutenberg is reasonably accessible prior to merge. ETA is before 5.0</li>\n	<li><strong>Struggle</strong>: Lack of developers and accessibility experts to help test and code the milestone issues. <em>The team is doing outreach to help solve this problem.</em></li>\n	<li><strong>Big Win</strong>: Interest from companies like The Paciello Group and Tenon.io to help out with Gutenberg code review and testing tools.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/cli/\">CLI</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: @danielbachhuber, <a href=\'https://profiles.wordpress.org/schlessera/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>schlessera</a></li>\n	<li><strong>Priority</strong>: Very first global <a href=\"https://make.wordpress.org/cli/2018/07/04/wp-cli-hack-day/\">Hack Day</a> is coming up July 20. Version 2.0.0 is still in progress (new <a href=\"https://github.com/wp-cli/wp-cli/issues/4752\">ETA</a> is end of July).</li>\n	<li><strong>Struggle</strong>: The team continues to need new contributors. The current team is tiny but tough.</li>\n	<li><strong>Big Win</strong>: WP-CLI is currently one of the project&#8217;s four main focuses, as mentioned in the Summer Update at WordCamp Europe.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/community/\">Community</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/francina/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>francina</a>, <a href=\'https://profiles.wordpress.org/hlashbrooke/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>hlashbrooke</a></li>\n	<li><strong>Priority</strong>: Focusing on smoothing out the processes in our community management by building up our team of volunteers and establishing what tools we need to keep things running well. ETA is ongoing.</li>\n	<li><strong>Struggle</strong>: Our two biggest struggles at the moment are tracking what we need to get done, and making final decisions on things. <em>There is current work on the tools available to assist with tracking progress.﻿</em></li>\n	<li><strong>Big Win</strong>: After making a concerted effort to get more contributors on the Community Team, we now have a much larger group of volunteers working as deputies and WordCamp mentors</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/core/\">Core</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/jeffpaul/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jeffpaul</a></li>\n	<li><strong>Priority</strong>: Following the <a href=\"https://wordpress.tv/2018/07/04/matt-mullenweg-a-summertime-update-keynote-and-qa/\">WordCamp Europe summer update</a> ﻿(and the companion post <a href=\"https://wordpress.org/news/2018/07/update-on-gutenberg/\">here</a>), the team is getting Gutenberg (the new WordPress editing experience) into a strong state for the 5.0 release. Potential ETA as soon as August.</li>\n	<li><strong>Struggle</strong>: Coordinating momentum and direction as we start seeing more contributors offering their time. Still working our way through open issues. <em>﻿The team is starting multiple bug scrubs each week to work through these more quickly and transparently.</em></li>\n	<li><strong>Big Win</strong>: Had a <a href=\"https://wordpress.org/news/2018/05/wordpress-4-9-6-privacy-and-maintenance-release/\">sizable release in 4.9.6</a> which featured major updates around privacy tools and functionality in Core.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/design/\">Design</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/melchoyce/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>melchoyce</a>, <a href=\'https://profiles.wordpress.org/karmatosed/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>karmatosed</a>, <a href=\'https://profiles.wordpress.org/boemedia/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>boemedia</a>, <a href=\'https://profiles.wordpress.org/joshuawold/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>joshuawold</a>, <a href=\'https://profiles.wordpress.org/mizejewski/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mizejewski</a></li>\n	<li><strong>Priority</strong>: Better on-boarding of new contributors, especially creating better documentation. ETA is end of July.</li>\n	<li><strong>Struggle</strong>: It&#8217;s hard to identify reasonably small tasks for first-time contributors.</li>\n	<li><strong>Big Win</strong>: The team is much more organized now which has helped clear out the design backlog, bring in new contributors, and also keep current contributors coming back. <em>Bonus: Joshua Wold will co-lead the upcoming release.</em></li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/docs/\">Documentation</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/kenshino/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>kenshino</a><br /></li>\n	<li><strong>Priority</strong>: Opening up the work on <a href=\"https://make.wordpress.org/docs/2018/02/26/state-of-helphub-february-2018/\">HelpHub</a> to new contributors and easing the onboarding process. No ETA.<br /></li>\n	<li><strong>Struggle</strong>: Some blockers with making sure the code and database can be ready to launch on https://wordpress.org/support/<br /></li>\n	<li><strong>Big Win</strong>: The <a href=\"https://wp-helphub.com/\">first phase of HelpHub</a> creation is complete, which means content updates (current info, more readable, easier discovery), internal search, design improvements, and REST API endpoints.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/hosting/\">Hosting</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/mikeschroder/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mikeschroder</a>, <a href=\'https://profiles.wordpress.org/jadonn/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jadonn</a></li>\n	<li><strong>Priority</strong>: Preparing hosts for supporting Gutenberg, especially support questions they&#8217;re likely to see when the &#8220;Try Gutenberg&#8221; callout is released. ETA July 31st, then before WordPress 5.0<br /><strong></strong></li>\n	<li><strong>Struggle</strong>: Most contributions are still made a by a small team of volunteers. Seeing a few more people join, but progress is slow.<br /><strong></strong></li>\n	<li><strong>﻿Big Win</strong>: New team members and hosting companies have joined the #hosting-community team and have started contributing.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/marketing/\">Marketing</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/bridgetwillard/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>bridgetwillard</a></li>\n	<li><strong>Priority</strong>: Continuing to write and publish case studies from the community. ETA is ongoing.</li>\n	<li><strong>Struggle</strong>: No current team struggles.</li>\n	<li><strong>Big Win</strong>: Wrote and designed a short <a href=\"https://make.wordpress.org/marketing/2018/04/24/contributor-day-onboarding-pdf/\">Contributor Day onboarding card</a>. It was used at Contributor Day at WCEU and onboarding time went down to 1 hour instead of 3 hours.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/meta/\">Meta</a> (WordPress.org Site)</h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/tellyworth/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>tellyworth</a>, <a href=\'https://profiles.wordpress.org/coffee2code/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>coffee2code</a></li>\n	<li><strong>Priority</strong>: Reducing manual work around the contributor space (theme review, GDPR/privacy, plugin review). ETA for small wins is end of quarter, larger efforts after that.</li>\n	<li><strong>Struggle</strong>: Maintaining momentum on tickets. <em>There are also some discussions about updating the ticket management process across teams that use the Meta trac system.</em></li>\n	<li><strong>Big Win</strong>: The new About page launched and has been translated across most locale sites.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/mobile/\">Mobile</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/elibud/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>elibud</a></li>\n	<li><strong>Priority</strong>: Getting Gutenberg in the mobile applications. ETA is late December.</li>\n	<li><strong>Struggle</strong>: Consuming the Gutenberg source in the ReactNative app directly. <em>More info can be found here: https://make.wordpress.org/mobile/2018/07/09/next-steps-for-gutenberg-mobile/</em></li>\n	<li><strong>Big Win</strong>: The WordPress mobile applications now fully support right-to-left languages and are compliant with the latest standards for accessibility.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/plugins/\">Plugins</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/ipstenu/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>ipstenu</a></li>\n	<li><strong>Priority</strong>: Clearing ~8,000 unused plugins from the queues. Likely ETA is September.<br /></li>\n	<li><strong>Struggles</strong>: Had to triage a lot of false claims around plugins offering GDPR compliance.</li>\n	<li><strong>Big Win</strong>: Released 4.9.6 and <a href=\"https://make.wordpress.org/plugins/2018/05/17/wp-4-9-6-privacy-hooks-and-you/\">updated expectations</a> with plugin authors. Huge thanks to the Core Privacy team for their hard work on this.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/polyglots/\">Polyglots</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/petya/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>petya</a>, <a href=\'https://profiles.wordpress.org/ocean90/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>ocean90</a>, <a href=\'https://profiles.wordpress.org/nao/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>nao</a>, <a href=\'https://profiles.wordpress.org/chantalc/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chantalc</a>, <a href=\'https://profiles.wordpress.org/deconf/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>deconf</a>, <a href=\'https://profiles.wordpress.org/casiepa/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>casiepa</a></li>\n	<li><strong>Priority</strong>: Keep WordPress releases translated to 100% and then concentrate on the top 100 plugins and themes. ETA is ongoing.<br /><strong></strong></li>\n	<li><strong>﻿Struggle</strong>: Getting new PTEs fast enough, and complex tools/systems. Overall, the volume of strings awaiting approval.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/support/\">Support</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/clorith/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>clorith</a></li>\n	<li><strong>Priority:</strong> Getting ready for the Gutenberg callout (it got pushed last quarter). Needing a better presence on the official support forums, and outreach for that is underway, ETA end of July. <br /></li>\n	<li><strong>Struggle</strong>: Keeping contributors participating post-contributor days/drives. <em>﻿Considering the creation of a dedicated post-contributor day survey to get some insight here.</em></li>\n	<li><strong>Big Win</strong>: The increase in international liaisons joining for weekly meetings, helping bring the wider support community together.</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/themes/\">Theme Review</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/acosmin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>acosmin</a>, <a href=\'https://profiles.wordpress.org/rabmalin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rabmalin</a>, <a href=\'https://profiles.wordpress.org/thinkupthemes/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>thinkupthemes</a>, <a href=\'https://profiles.wordpress.org/williampatton/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>williampatton</a></li>\n	<li><strong>Priority</strong>: Building a better Theme Check/Sniffer in order to automate most of the checks done right now by reviewers. ETA late 2018, early 2019.</li>\n	<li><strong>Struggle</strong>: Bringing in new contributors to the team.</li>\n	<li><strong>Big Win</strong>: <a href=\"https://make.wordpress.org/themes/2018/04/30/trusted-authors-program/\">Trusted Authors program﻿</a></li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/tide/\">Tide</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/valendesigns/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>valendesigns</a> (but usually <a href=\'https://profiles.wordpress.org/jeffpaul/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jeffpaul</a>)</li>\n	<li><strong>Priority</strong>: Storing PHPCompatibilty results inside the WordPress.org API and building a UI to display those results, an endpoint to request an audit is required for this work to continue.</li>\n	<li><strong>Struggle</strong>: Development has dramatically slowed down while team members are on leave or pulled into internal client work.</li>\n	<li><strong>Big Win</strong>: Migration to Google Cloud Platform (GCP) from Amazon Web Services (AWS) is complete and the audit servers have all been rewritten in Go. (This allows us to be faster with greater capacity and less cost.)</li>\n</ul>\n\n<h2><a href=\"https://make.wordpress.org/training/\">Training</a></h2>\n\n<ul>\n	<li><strong>Contacted</strong>: <a href=\'https://profiles.wordpress.org/bethsoderberg/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>bethsoderberg</a>, <a href=\'https://profiles.wordpress.org/juliek/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>juliek</a></li>\n	<li><strong>Priority:</strong> Lesson plan production. ETA is ongoing.</li>\n	<li><strong>Struggle:</strong> The workflow is a little complex, so recruiting and training enough contributors to keep the process moving is a struggle.</li>\n	<li><strong>Big Win</strong>: WordCamp Europe&#8217;s Contributor Day was very productive. New tools/workflow are in place and two team representatives were there to lead and help.</li>\n</ul>\n\n<p><em>Interested in updates from the first quarter of this year? You can find those here: <a href=\"https://make.wordpress.org/updates/2018/04/24/quarterly-updates-q1-2018/\"><em>https://make.wordpress.org/updates/2018/04/24/quarterly-updates-q1-2018/</em></a>\n	</em>\n</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:\"6140\";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:51:\"\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:19:\"Update on 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/news/2018/07/update-on-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 06 Jul 2018 19:23:23 +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:5:\"Focus\";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:9:\"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:34:\"https://wordpress.org/news/?p=6118\";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:328:\"Progress on the Gutenberg project, the new content creating experience coming to WordPress, has come a long way. Since the start of the project, there have been 30 releases and 12 of those happened after WordCamp US 2017. In total since then, there have been 1,764 issues opened and 1,115 closed as of WordCamp Europe. [&#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:13:\"Tammie Lister\";s: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:2261:\"<p>Progress on the Gutenberg project, the new content creating experience coming to WordPress, has come a long way. Since the start of the project, there have been 30 releases and 12 of those happened after WordCamp US 2017. In total since then, there have been 1,764 issues opened and 1,115 closed as of WordCamp Europe. As the work on phase one moves into its final stretch, here is what you can expect.<br /></p>\n\n<h4>In Progress</h4>\n\n<ul>\n	<li>Freeze new features in Gutenberg (the feature list can be found <a href=\"https://github.com/WordPress/gutenberg/issues/4894\">here</a>).</li>\n	<li>Hosts, agencies, teachers invited to opt-in sites they have influence over.</li>\n	<li>WordPress.com has opt-in for wp-admin users. The number of sites and posts will be tracked.</li>\n	<li>Mobile app support for Gutenberg will be across iOS and Android.</li>\n</ul>\n\n<h4>July</h4>\n\n<ul>\n	<li>4.9.x release with an invitation to install either Gutenberg or Classic Editor plugin.</li>\n	<li>WordPress.com will move to opt-out. There will be tracking to see who opts out and why.</li>\n	<li>Triage increases and bug gardening escalates to get blockers in Gutenberg down to zero.</li>\n	<li>Gutenberg phase two, Customization exploration begins by moving beyond the post.</li>\n</ul>\n\n<h4>August and beyond</h4>\n\n<ul>\n	<li>All critical issues within Gutenberg are resolved.</li>\n	<li>There is full integration with Calypso and there is opt-in for users there.</li>\n	<li>A goal will be 100k+ sites having made 250k+ posts using Gutenberg.</li>\n	<li>Core merge of Gutenberg begins the 5.0 release cycle.</li>\n	<li>5.0 moves into beta releases and translations are completed.</li>\n	<li>There will be a mobile version of Gutenberg by the end of the year.</li>\n</ul>\n\n<p>WordPress 5.0 could be as soon as August with hundreds of thousands of sites using Gutenberg before release. Learn more about Gutenberg <a href=\"https://wordpress.org/gutenberg/\">here</a>, take it for a <a href=\"https://testgutenberg.com/\">test drive</a>, <a href=\"https://wordpress.org/plugins/gutenberg/\">install</a> on your site, follow along on <a href=\"https://github.com/WordPress/gutenberg\">GitHub</a> and give your <a href=\"https://wordpressdotorg.polldaddy.com/s/gutenberg-support\">feedback</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:\"6118\";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:51:\"\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.7 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/07/wordpress-4-9-7-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:\"Thu, 05 Jul 2018 17:00: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: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:8:\"Security\";s: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=6091\";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:\"WordPress 4.9.7 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.6 and earlier are affected by a media issue that could potentially allow a user with certain capabilities to attempt to delete files outside the uploads [&#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:3984:\"<p>WordPress 4.9.7 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.6 and earlier are affected by a media issue that could potentially allow a user with certain capabilities to attempt to delete files outside the uploads directory.</p>\n\n<p>Thank you to <a href=\"https://hackerone.com/slavco\">Slavco</a> for reporting the original issue and <a href=\"https://www.wordfence.com/\">Matt Barry</a> for reporting related issues.</p>\n\n<p>Seventeen other bugs were fixed in WordPress 4.9.7. Particularly of note were:</p>\n\n<ul>\n	<li>Taxonomy: Improve cache handling for term queries.</li>\n	<li>Posts, Post Types: Clear post password cookie when logging out.</li>\n	<li>Widgets: Allow basic HTML tags in sidebar descriptions on Widgets admin screen.</li>\n	<li>Community Events Dashboard: Always show the nearest WordCamp if one is coming up, even if there are multiple Meetups happening first.</li>\n	<li>Privacy: Make sure default privacy policy content does not cause a fatal error when flushing rewrite rules outside of the admin context.</li>\n</ul>\n\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.9.7</a> or venture over to Dashboard → Updates and click &#8220;Update Now.&#8221; Sites that support automatic background updates are already beginning to update automatically.</p>\n\n<p>The previously scheduled 4.9.7 is now referred to as 4.9.8, and will follow the <a href=\"https://make.wordpress.org/core/2018/07/04/dev-chat-summary-july-4th-4-9-7-week-7/\">release schedule posted yesterday</a>.</p>\n\n<p>Thank you to everyone who contributed to WordPress 4.9.7:</p>\n\n<p><a href=\"https://profiles.wordpress.org/1naveengiri/\">1naveengiri</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/alejandroxlopez/\">alejandroxlopez</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/aryamaaru/\">Arun</a>, <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bjornw/\">BjornW</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/garetharnold/\">Gareth</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/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a>, <a href=\"https://profiles.wordpress.org/khaihong/\">khaihong</a>, <a href=\"https://profiles.wordpress.org/lbenicio/\">lbenicio</a>, <a href=\"https://profiles.wordpress.org/leanderiversen/\">Leander Iversen</a>, <a href=\"https://profiles.wordpress.org/mermel/\">mermel</a>, <a href=\"https://profiles.wordpress.org/metalandcoffee/\">metalandcoffee</a>, <a href=\"https://profiles.wordpress.org/jbpaul17/\">Migrated to @jeffpaul</a>, <a href=\"https://profiles.wordpress.org/palmiak/\">palmiak</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/skoldin/\">skoldin</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a>, <a href=\"https://profiles.wordpress.org/itowhid06/\">Towhidul Islam</a>, <a href=\"https://profiles.wordpress.org/warmlaundry/\">warmlaundry</a>, and <a href=\"https://profiles.wordpress.org/yuriv/\">YuriV</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:\"6091\";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:48:\"\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:33:\"The Month in WordPress: June 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:68:\"https://wordpress.org/news/2018/07/the-month-in-wordpress-june-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 Jul 2018 09:28: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: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=6087\";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:366:\"With one of the two flagship WordCamp events taking place this month, as well as some important WordPress project announcements, there’s no shortage of news. Learn more about what happened in the WordPress community in June. Another Successful WordCamp Europe On June 14th, WordCamp Europe kicked off three days of learning and contributions in Belgrade. [&#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:4627:\"<p>With one of the two flagship WordCamp events taking place this month, as well as some important WordPress project announcements, there’s no shortage of news. Learn more about what happened in the WordPress community in June.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>Another Successful WordCamp Europe</h2>\n\n<p>On June 14th, WordCamp Europe kicked off three days of learning and contributions in Belgrade. Over 2,000 people attended in person, with hundreds more watching live streams of the sessions.</p>\n\n<p>The WordCamp was a great success with plenty of first-time attendees and new WordPress contributors getting involved in the project and community. Recorded sessions from the 65 speakers at the event will be available on WordPress.tv in the coming weeks. In the meantime, check out the <a href=\"https://www.flickr.com/photos/wceu/albums\">photos from the event</a>.</p>\n\n<p><a href=\"https://2018.europe.wordcamp.org/2018/06/16/wordcamp-europe-2019/\">The next WordCamp Europe</a> takes place on June 20-22 2019 in Berlin, Germany. If you’re based in Europe and would like to serve on the organizing team, <a href=\"https://2019.europe.wordcamp.org/2018/06/16/call-wordcamp-europe-2019-organizers/\">fill in the application form</a>.</p>\n\n<h2>Updated Roadmap for the New WordPress Content Editor</h2>\n\n<p>During his keynote session at WordCamp Europe, Matt Mullenweg presented <a href=\"https://gutenbergtimes.com/mullenweg-on-gutenberg-roll-out-plan/\">an updated roadmap</a> for <a href=\"https://wordpress.org/gutenberg/\">Gutenberg</a>, the new content editor coming in WordPress 5.0.</p>\n\n<p>While the editor is in rapid development, <a href=\"https://make.wordpress.org/core/2018/06/21/whats-new-in-gutenberg-21st-june/\">with v3.1 being released this past month</a>, the team is aiming to ship Gutenberg with WordPress Core in August, 2018. This is not set in stone — the release date may shift as development progresses — but this gives the first realistic idea of when we can expect the editor to be released.</p>\n\n<p>If you would like to contribute to Gutenberg, read <a href=\"https://wordpress.org/gutenberg/handbook/\">the handbook</a>, follow the <a href=\"https://make.wordpress.org/core/\">Core team blog</a>, and join the #core-editor channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n\n<h2>WordCamp Incubator Cities Announced</h2>\n\n<p>The WordCamp Incubator program helps spread WordPress to underserved communities by providing organizing support for their first WordCamp. The first iteration of this program ran successfully in 2016 and empowered three cities to start their own WordPress communities.</p>\n\n<p>This year, the Community Team is running the Incubator program again. After receiving applications from 104 communities, <a href=\"https://make.wordpress.org/community/2018/06/26/wordcamp-incubator-program-2018-locations-announcement/\">they have selected</a> Montevideo, Uruguay and Kota Kinabalu, Malaysia to participate in the program. Both cities will receive direct help from experienced WordCamp organizers to run their first-ever WordCamp as a way to help their WordPress community get started.</p>\n\n<p>To find out more about the Incubator program follow the <a href=\"https://make.wordpress.org/community/\">Community team blog</a>, and join the #community-events 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>The WordPress community of Spain recently <a href=\"https://twitter.com/wp_es/status/1004681694660603904\">received an award</a> for being the best open-source community in the country.</li>\n	<li>This month, WordPress reached <a href=\"https://w3techs.com/technologies/details/cm-wordpress/all/all\">the milestone of powering 31% of websites</a>.</li>\n	<li><a href=\"https://wprig.io/introducing-wprig-wordpress/\">WP Rig</a> is a brand new tool to help WordPress developers build better themes.</li>\n	<li><a href=\"https://richtabor.com/gutenberg-block-unit-test/\">Block Unit Test</a> is a new plugin to help theme developers prepare for Gutenberg.</li>\n	<li>Near the end of the month, Zac Gordon hosted <a href=\"https://javascriptforwp.com/conference/\">an online conference</a> focused on JavaScript development in WordPress &#8211; the session videos will be available on YouTube soon.</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:\"6087\";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:48:\"\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:7;a:6:{s:4:\"data\";s:51:\"\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:8;a:6:{s:4:\"data\";s:48:\"\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://i1.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://i1.wp.com/wordpress.org/news/files/2018/05/comments-border.png?w=1264&amp;ssl=1 1264w, https://i1.wp.com/wordpress.org/news/files/2018/05/comments-border.png?resize=300%2C291&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2018/05/comments-border.png?resize=768%2C744&amp;ssl=1 768w, https://i1.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://i1.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://i1.wp.com/wordpress.org/news/files/2018/05/export-data.png?w=2372&amp;ssl=1 2372w, https://i1.wp.com/wordpress.org/news/files/2018/05/export-data.png?resize=300%2C221&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2018/05/export-data.png?resize=768%2C565&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2018/05/export-data.png?resize=1024%2C753&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2018/05/export-data.png?w=1264&amp;ssl=1 1264w, https://i1.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:9;a:6:{s:4:\"data\";s:48:\"\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:\"\";}}}}}}}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, 28 Aug 2018 03:17:39 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:\"Thu, 02 Aug 2018 22:13:06 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 1\";}}s:5:\"build\";s:14:\"20130911040210\";}", "no");
INSERT INTO `wp_options` VALUES("367", "wpseo_sitemap_et_pb_layout_cache_validator", "gIwS", "no");
INSERT INTO `wp_options` VALUES("368", "wpseo_sitemap_scope_cache_validator", "gIwW", "no");
INSERT INTO `wp_options` VALUES("369", "wpseo_sitemap_layout_type_cache_validator", "gIwZ", "no");
INSERT INTO `wp_options` VALUES("370", "wpseo_sitemap_module_width_cache_validator", "gIx2", "no");
INSERT INTO `wp_options` VALUES("1009", "project_category_children", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("1008", "wpseo_sitemap_project_cache_validator", "3usN5", "no");
INSERT INTO `wp_options` VALUES("144", "recently_activated", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("158", "widget_aboutmewidget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("159", "widget_adsensewidget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("160", "widget_advwidget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("161", "shop_catalog_image_size", "a:3:{s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"400\";s:4:\"crop\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("162", "shop_single_image_size", "a:3:{s:5:\"width\";s:3:\"510\";s:6:\"height\";s:4:\"9999\";s:4:\"crop\";i:0;}", "yes");
INSERT INTO `wp_options` VALUES("163", "shop_thumbnail_image_size", "a:3:{s:5:\"width\";s:3:\"157\";s:6:\"height\";s:3:\"157\";s:4:\"crop\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("164", "et_images_temp_folder", "/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-content/uploads/et_temp", "yes");
INSERT INTO `wp_options` VALUES("165", "et_schedule_clean_images_last_time", "1535332136", "yes");
INSERT INTO `wp_options` VALUES("166", "et_pb_builder_options", "a:2:{i:0;b:0;s:35:\"email_provider_credentials_migrated\";b:1;}", "yes");
INSERT INTO `wp_options` VALUES("206", "rewrite_rules", "a:124:{s:10:\"project/?$\";s:27:\"index.php?post_type=project\";s:40:\"project/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=project&feed=$matches[1]\";s:35:\"project/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=project&feed=$matches[1]\";s:27:\"project/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=project&paged=$matches[1]\";s:19:\"sitemap_index\\.xml$\";s:19:\"index.php?sitemap=1\";s:31:\"([^/]+?)-sitemap([0-9]+)?\\.xml$\";s:51:\"index.php?sitemap=$matches[1]&sitemap_n=$matches[2]\";s:24:\"([a-z]+)?-?sitemap\\.xsl$\";s:25:\"index.php?xsl=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:35:\"project/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"project/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"project/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"project/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"project/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"project/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"project/([^/]+)/embed/?$\";s:40:\"index.php?project=$matches[1]&embed=true\";s:28:\"project/([^/]+)/trackback/?$\";s:34:\"index.php?project=$matches[1]&tb=1\";s:48:\"project/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?project=$matches[1]&feed=$matches[2]\";s:43:\"project/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?project=$matches[1]&feed=$matches[2]\";s:36:\"project/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?project=$matches[1]&paged=$matches[2]\";s:43:\"project/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?project=$matches[1]&cpage=$matches[2]\";s:32:\"project/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?project=$matches[1]&page=$matches[2]\";s:24:\"project/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"project/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"project/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"project/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"project/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"project/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:57:\"project_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?project_category=$matches[1]&feed=$matches[2]\";s:52:\"project_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?project_category=$matches[1]&feed=$matches[2]\";s:33:\"project_category/([^/]+)/embed/?$\";s:49:\"index.php?project_category=$matches[1]&embed=true\";s:45:\"project_category/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?project_category=$matches[1]&paged=$matches[2]\";s:27:\"project_category/([^/]+)/?$\";s:38:\"index.php?project_category=$matches[1]\";s:52:\"project_tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?project_tag=$matches[1]&feed=$matches[2]\";s:47:\"project_tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?project_tag=$matches[1]&feed=$matches[2]\";s:28:\"project_tag/([^/]+)/embed/?$\";s:44:\"index.php?project_tag=$matches[1]&embed=true\";s:40:\"project_tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?project_tag=$matches[1]&paged=$matches[2]\";s:22:\"project_tag/([^/]+)/?$\";s:33:\"index.php?project_tag=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:38:\"index.php?&page_id=6&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}", "yes");
INSERT INTO `wp_options` VALUES("175", "_site_transient_update_themes", "O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1535424850;s:7:\"checked\";a:2:{s:10:\"Divi-child\";s:3:\"3.x\";s:4:\"Divi\";s:7:\"3.0.106\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}", "no");
INSERT INTO `wp_options` VALUES("177", "theme_mods_Divi-child", "a:6:{i:0;b:0;s:16:\"et_pb_css_synced\";s:3:\"yes\";s:18:\"nav_menu_locations\";a:3:{s:12:\"primary-menu\";i:2;s:14:\"secondary-menu\";i:0;s:11:\"footer-menu\";i:2;}s:39:\"et_updated_layouts_built_for_post_types\";s:3:\"yes\";s:18:\"custom_css_post_id\";i:16;s:16:\"background_color\";s:6:\"9dd00f\";}", "yes");
INSERT INTO `wp_options` VALUES("192", "_site_transient_et_update_all_plugins", "O:8:\"stdClass\":1:{s:12:\"last_checked\";i:1532506584;}", "no");
INSERT INTO `wp_options` VALUES("199", "_transient_timeout_wpseo_meta_table_inaccessible", "1556319684", "no");
INSERT INTO `wp_options` VALUES("200", "_transient_wpseo_meta_table_inaccessible", "0", "no");
INSERT INTO `wp_options` VALUES("197", "_transient_timeout_wpseo_link_table_inaccessible", "1556319684", "no");
INSERT INTO `wp_options` VALUES("198", "_transient_wpseo_link_table_inaccessible", "0", "no");
INSERT INTO `wp_options` VALUES("193", "wpseo", "a:19:{s:15:\"ms_defaults_set\";b:0;s:7:\"version\";s:3:\"7.3\";s:20:\"disableadvanced_meta\";b:1;s:19:\"onpage_indexability\";b:1;s:11:\"baiduverify\";s:0:\"\";s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:9:\"site_type\";s:0:\"\";s:20:\"has_multiple_authors\";s:0:\"\";s:16:\"environment_type\";s:0:\"\";s:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;s:21:\"enable_admin_bar_menu\";b:1;s:26:\"enable_cornerstone_content\";b:1;s:18:\"enable_xml_sitemap\";b:1;s:24:\"enable_text_link_counter\";b:1;s:22:\"show_onboarding_notice\";b:1;s:18:\"first_activated_on\";i:1524783683;}", "yes");
INSERT INTO `wp_options` VALUES("194", "wpseo_titles", "a:84:{s:10:\"title_test\";i:0;s:17:\"forcerewritetitle\";b:0;s:9:\"separator\";s:7:\"sc-dash\";s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:41:\"%%name%%, Author at %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:35:\"Page not found %%sep%% %%sitename%%\";s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";s:20:\"noindex-author-wpseo\";b:0;s:28:\"noindex-author-noposts-wpseo\";b:1;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:0;s:12:\"disable-date\";b:0;s:19:\"disable-post_format\";b:0;s:18:\"disable-attachment\";b:1;s:20:\"breadcrumbs-404crumb\";s:25:\"Error 404: Page not found\";s:29:\"breadcrumbs-display-blog-page\";b:1;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:12:\"Archives for\";s:18:\"breadcrumbs-enable\";b:0;s:16:\"breadcrumbs-home\";s:4:\"Home\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:16:\"You searched for\";s:15:\"breadcrumbs-sep\";s:7:\"&raquo;\";s:12:\"website_name\";s:0:\"\";s:11:\"person_name\";s:0:\"\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"company_logo\";s:0:\"\";s:12:\"company_name\";s:0:\"\";s:17:\"company_or_person\";s:0:\"\";s:17:\"stripcategorybase\";b:0;s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:13:\"showdate-post\";b:0;s:23:\"display-metabox-pt-post\";b:1;s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:13:\"showdate-page\";b:0;s:23:\"display-metabox-pt-page\";b:1;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:19:\"showdate-attachment\";b:0;s:29:\"display-metabox-pt-attachment\";b:1;s:13:\"title-project\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:16:\"metadesc-project\";s:0:\"\";s:15:\"noindex-project\";b:0;s:16:\"showdate-project\";b:0;s:26:\"display-metabox-pt-project\";b:1;s:23:\"title-ptarchive-project\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:26:\"metadesc-ptarchive-project\";s:0:\"\";s:25:\"bctitle-ptarchive-project\";s:0:\"\";s:25:\"noindex-ptarchive-project\";b:0;s:18:\"title-tax-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:28:\"display-metabox-tax-category\";b:1;s:20:\"noindex-tax-category\";b:0;s:18:\"title-tax-post_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:28:\"display-metabox-tax-post_tag\";b:1;s:20:\"noindex-tax-post_tag\";b:0;s:21:\"title-tax-post_format\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:31:\"display-metabox-tax-post_format\";b:1;s:23:\"noindex-tax-post_format\";b:1;s:26:\"title-tax-project_category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:29:\"metadesc-tax-project_category\";s:0:\"\";s:36:\"display-metabox-tax-project_category\";b:1;s:28:\"noindex-tax-project_category\";b:0;s:21:\"title-tax-project_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-project_tag\";s:0:\"\";s:31:\"display-metabox-tax-project_tag\";b:1;s:23:\"noindex-tax-project_tag\";b:0;s:23:\"post_types-post-maintax\";i:0;s:26:\"post_types-project-maintax\";i:0;s:34:\"taxonomy-project_category-ptparent\";i:0;s:29:\"taxonomy-project_tag-ptparent\";i:0;}", "yes");
INSERT INTO `wp_options` VALUES("195", "wpseo_social", "a:18:{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: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:19:\"summary_large_image\";s:11:\"youtube_url\";s:0:\"\";s:15:\"google_plus_url\";s:0:\"\";s:10:\"fbadminapp\";s:0:\"\";}", "yes");
INSERT INTO `wp_options` VALUES("196", "wpseo_flush_rewrite", "1", "yes");
INSERT INTO `wp_options` VALUES("1346", "_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9", "1535469461", "no");
INSERT INTO `wp_options` VALUES("1347", "_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9", "1535426261", "no");
INSERT INTO `wp_options` VALUES("1348", "_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b", "1535469461", "no");
INSERT INTO `wp_options` VALUES("1349", "_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b", "<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2018/08/wordpress-4-9-8-maintenance-release/\'>WordPress 4.9.8 Maintenance Release</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wptavern.com/gutenberg-block-library-provides-a-searchable-index-of-individual-blocks\'>WPTavern: Gutenberg Block Library Provides a Searchable Index of Individual Blocks</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wpcampus-2018-videos-are-now-available-to-watch\'>WPTavern: WPCampus 2018 Videos Are Now Available to Watch</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/gutenberg-and-classic-editor-plugins-pass-200000-active-installations-wordpress-4-9-9-planning-underway\'>WPTavern: Gutenberg and Classic Editor Plugins Pass 200,000 Active Installations, WordPress 4.9.9 Planning Underway</a></li></ul></div>", "no");
INSERT INTO `wp_options` VALUES("1350", "_transient_timeout_plugin_slugs", "1535512682", "no");
INSERT INTO `wp_options` VALUES("1351", "_transient_plugin_slugs", "a:4:{i:0;s:25:\"duplicator/duplicator.php\";i:1;s:49:\"elegant-themes-support/elegant-themes-support.php\";i:2;s:27:\"redirection/redirection.php\";i:3;s:24:\"wordpress-seo/wp-seo.php\";}", "no");
INSERT INTO `wp_options` VALUES("462", "auto_core_update_notified", "a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:39:\"stephanie@alluredigitalmarketing.com.au\";s:7:\"version\";s:5:\"4.9.8\";s:9:\"timestamp\";i:1533492795;}", "no");
INSERT INTO `wp_options` VALUES("212", "et_automatic_updates_options", "a:2:{s:8:\"username\";s:16:\"stephanie.hs1202\";s:7:\"api_key\";s:40:\"090ca03a5e119d32ccbf5664b8f4a24bef234fe6\";}", "no");
INSERT INTO `wp_options` VALUES("210", "wpseo_sitemap_1_cache_validator", "RcTz", "no");
INSERT INTO `wp_options` VALUES("211", "wpseo_sitemap_page_cache_validator", "Eup5", "no");
INSERT INTO `wp_options` VALUES("995", "category_children", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("227", "auth_key", "<V#_l:<+mArR}udmkYKFqpKqNfk2M3$9>JnB|}2_qTYe4n]W1lvl%[PJ@WYH6.[S", "no");
INSERT INTO `wp_options` VALUES("214", "wpseo_sitemap_attachment_cache_validator", "4kdiu", "no");
INSERT INTO `wp_options` VALUES("222", "nav_menu_options", "a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}", "yes");
INSERT INTO `wp_options` VALUES("219", "et_google_api_settings", "a:2:{s:7:\"api_key\";s:0:\"\";s:26:\"enqueue_google_maps_script\";s:2:\"on\";}", "yes");
INSERT INTO `wp_options` VALUES("220", "wpseo_sitemap_custom_css_cache_validator", "3fWyJ", "no");
INSERT INTO `wp_options` VALUES("221", "wpseo_sitemap_nav_menu_item_cache_validator", "EPLL", "no");
INSERT INTO `wp_options` VALUES("228", "auth_salt", "Z1Or^fp*+&CnbeB)fNfl!gFan!FPYqDywsj>IK@wgN;[1lq5|#Eo!jA-j:%zF@J]", "no");
INSERT INTO `wp_options` VALUES("229", "wpseo_sitemap_customize_changeset_cache_validator", "4kLr8", "no");
INSERT INTO `wp_options` VALUES("232", "wpseo_sitemap_post_cache_validator", "RcTM", "no");
INSERT INTO `wp_options` VALUES("233", "wpseo_sitemap_category_cache_validator", "jgOg", "no");
INSERT INTO `wp_options` VALUES("413", "et_account_status_last_checked", "1532506583", "no");
INSERT INTO `wp_options` VALUES("419", "duplicator_settings", "a:10:{s:7:\"version\";s:6:\"1.2.38\";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("420", "duplicator_version_plugin", "1.2.38", "yes");
INSERT INTO `wp_options` VALUES("425", "duplicator_package_active", "O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2018-08-28 03:18:53\";s:7:\"Version\";s:6:\"1.2.38\";s:9:\"VersionWP\";s:5:\"4.9.8\";s:9:\"VersionDB\";s:6:\"5.6.39\";s:10:\"VersionPHP\";s:6:\"7.0.31\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";N;s:4:\"Name\";s:18:\"20180520_beyondink\";s:4:\"Hash\";s:32:\"59705126da85a7a73383180828031853\";s:8:\"NameHash\";s:51:\"20180520_beyondink_59705126da85a7a73383180828031853\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:71:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-snapshots/tmp\";s:8:\"StoreURL\";s:61:\"https://beyondink.alluredigitalmarketing.com.au/wp-snapshots/\";s:8:\"ScanFile\";s:61:\"20180520_beyondink_59705126da85a7a73383180828031853_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:54:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au\";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-08-28 03:18:53\";s:7:\"Version\";s:6:\"1.2.38\";s:9:\"VersionWP\";s:5:\"4.9.8\";s:9:\"VersionDB\";s:6:\"5.6.39\";s:10:\"VersionPHP\";s:6:\"7.0.31\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";N;s:4:\"Name\";s:18:\"20180520_beyondink\";s:4:\"Hash\";s:32:\"59705126da85a7a73383180828031853\";s:8:\"NameHash\";s:51:\"20180520_beyondink_59705126da85a7a73383180828031853\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:71:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-snapshots/tmp\";s:8:\"StoreURL\";s:61:\"https://beyondink.alluredigitalmarketing.com.au/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:63:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-admin\";i:1;s:73:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-content/uploads\";i:2;s:75:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-content/languages\";i:3;s:73:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-content/plugins\";i:4;s:72:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-content/themes\";i:5;s:66:\"/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-includes\";}}s:9:\"Installer\";r:80;s:8:\"Database\";r:88;}", "yes");
INSERT INTO `wp_options` VALUES("426", "duplicator_ui_view_state", "a:9:{s:19:\"dup-pack-build-try2\";s:1:\"1\";s:22:\"dup-pack-archive-panel\";s:1:\"0\";s:24:\"dup-pack-installer-panel\";s:1:\"0\";s:22:\"dup-pack-storage-panel\";s:1:\"0\";s:29:\"dup-package-dtl-general-panel\";s:1:\"1\";s:29:\"dup-package-dtl-storage-panel\";s:1:\"1\";s:29:\"dup-package-dtl-install-panel\";s:1:\"1\";s:29:\"dup-package-dtl-archive-panel\";s:1:\"1\";s:19:\"dup-pack-build-try1\";s:1:\"1\";}", "yes");
INSERT INTO `wp_options` VALUES("956", "et_support_site_id", "lHSowu+hK=Uax9Ffb352", "yes");
INSERT INTO `wp_options` VALUES("962", "wpseo_sitemap_author_cache_validator", "U2u", "no");
INSERT INTO `wp_options` VALUES("1342", "_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca", "1535469459", "no");
INSERT INTO `wp_options` VALUES("1343", "_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca", "1535426259", "no");
INSERT INTO `wp_options` VALUES("1344", "_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9", "1535469461", "no");
INSERT INTO `wp_options` VALUES("1345", "_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:82:\"WPTavern: Gutenberg Block Library Provides a Searchable Index of Individual Blocks\";s: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=83507\";s: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:93:\"https://wptavern.com/gutenberg-block-library-provides-a-searchable-index-of-individual-blocks\";s: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:4439:\"<p>An avalanche of blocks is pouring into the WordPress ecosystem ahead of Gutenberg&#8217;s inclusion in core. A few block collections, such as Atomic Blocks, Stackable, and CoBlocks, can be found on <a href=\"https://wordpress.org/plugins/search/gutenberg+block/\" rel=\"noopener noreferrer\" target=\"_blank\">WordPress.org</a>, but it&#8217;s not easy to search the individual blocks they contain. Other collections and standalone blocks are spread across the web. WordPress theme developer <a href=\"https://twitter.com/dannycooper147\" rel=\"noopener noreferrer\" target=\"_blank\">Danny Cooper</a> has built a centralized <a href=\"https://editorblockswp.com/library\" rel=\"noopener noreferrer\" target=\"_blank\">library of Gutenberg blocks</a> that are currently available to extend the new editor.</p>\n<p>The library loads blocks into a grid with infinite scroll. It is searchable, so visitors can easily find individual blocks that are part of a collection. Blocks are also tagged, which makes it possible to compare a group of similar blocks. Individual listings display screenshots of the block in action and its settings panel, as well as a link to the author and a link to download.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/08/screely-1535383280324.png?ssl=1\"><img /></a></p>\n<p>The Gutenberg Block Library currently has more than four dozen blocks. Visitors and block creators can <a href=\"https://editorblockswp.com/submit-block/\" rel=\"noopener noreferrer\" target=\"_blank\">submit a block</a> that is missing from the library.</p>\n<p>Cooper is the owner of <a href=\"https://olympusthemes.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Olympus Themes</a>, a small collection of free and commercial niche-focused WordPress themes. He has also created his own blocks collection called <a href=\"https://editorblockswp.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Editor Blocks</a>, which focuses on blocks for business sites. His corresponding <a href=\"https://wordpress.org/themes/editor-blocks/\" rel=\"noopener noreferrer\" target=\"_blank\">Editor Blocks theme</a> is available for free on WordPress.org with support for all the business blocks.</p>\n<p>&#8220;As a theme developer I&#8217;d been waiting for a way to build themes in a way where what you see on the backend matches what you will see on the frontend,&#8221; Cooper said. &#8220;That can be achieved to some extent using the Customizer, but it&#8217;s hard to craft more than one complex page using that method.&#8221;</p>\n<p>Cooper comes from a PHP/jQuery background and said he didn&#8217;t have a strong enough understanding of ES6, Webpack, Babel, React to create Gutenberg blocks right away. The learning curve was a little steep but after getting a handle on the basics he is now able to make small contributions to the Gutenberg project.</p>\n<p>&#8220;It felt like I was hitting a brick wall every five minutes when I started,&#8221; he said. &#8220;<a href=\"https://gutenberg.courses/development/\" rel=\"noopener noreferrer\" target=\"_blank\">Zac Gordon&#8217;s course</a> helped me get past that stage. The #core-editor slack channel was a big help too. Other than that I just studied the code of the core blocks and used Google. As my knowledge increased I&#8217;ve tried to reach out by submitting bug reports to other Block Libraries and making minor contributions to the Gutenberg project on Github.&#8221;</p>\n<p>WordPress.org may be able to benefit from a centralized block library in the future, as people will be frequently searching for blocks after Gutenberg lands in core. Cooper said if WordPress.org had a library like this it might even be possible to find and install blocks from inside Gutenberg.</p>\n<p>&#8220;I could build a block that searches my library but it wouldn&#8217;t be able to install them as most are part of a &#8216;collection,\'&#8221; Cooper said. &#8220;I&#8217;m not sure if in the future the &#8216;collections&#8217; will continue to grow or people will move towards releasing individual blocks.&#8221;</p>\n<p>In the meantime, the Gutenberg Block Library provides a helpful resource for early adopters. Browsing through the listings, it&#8217;s exciting to see the variety of block functionality that the community is creating. Users who fully embrace Gutenberg in WordPress 5.0 will find dozens of blocks (and perhaps hundreds by that time) available for the new editor, if they know where to look.</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, 27 Aug 2018 16:45:26 +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: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:57:\"WPTavern: WPCampus 2018 Videos Are Now Available to Watch\";s: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=83466\";s: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/wpcampus-2018-videos-are-now-available-to-watch\";s: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:1710:\"<p>WPCampus 2018 was held July 12-14, 2018, at <a href=\"https://wustl.edu/\">Washington University</a> in St. Louis, Missouri. Educators, staff, and those in higher-education gathered to learn how WordPress can be and is used in higher-education environments. </p>\n\n<p>If you couldn&#8217;t attend in person or watch the live stream, you can now watch all of the sessions for free. Visit the event&#8217;s <a href=\"https://2018.wpcampus.org/schedule/\">schedule page</a> and click the Watch Session button. Alternatively, you can click on a session&#8217;s title to read a brief description and then watch the embedded video.</p>\n\n<p>Videos are hosted on YouTube which makes it easy to share and embed them. There are also links to view the presenter&#8217;s slides.</p>\n\n<p>If you have time, I recommend watching <a href=\"https://2018.wpcampus.org/schedule/gutenready-for-the-gutenpocalypse/\">GutenReady for the Gutenpocalypse</a> by Brian DeConinck and Jennifer McFarland who work at North Carolina State University in the Information and Technology Department. </p>\n\n<p>In this presentation, the duo explain what they&#8217;re doing to get staff, students, and campus sites prepared for Gutenberg. <br /></p>\n\n\n\n\n\n<p>In addition to the presentation above, I also recommend listening to <a href=\"https://wptavern.com/wpweekly-episode-324-getting-nc-state-gutenready\">episode 324</a> of WordPress Weekly where McFarland describes their experience so far in transitioning sites to Gutenberg, building custom blocks, and discussing what the future of themes might be like once the project is merged into WordPress. </p>\n\n<p>WPCampus organizers are in the beginning stages of planning next year&#8217;s event. </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, 24 Aug 2018 19:10: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: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:115:\"WPTavern: Gutenberg and Classic Editor Plugins Pass 200,000 Active Installations, WordPress 4.9.9 Planning Underway\";s: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=83475\";s: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:124:\"https://wptavern.com/gutenberg-and-classic-editor-plugins-pass-200000-active-installations-wordpress-4-9-9-planning-underway\";s: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:6122:\"<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/08/printing-letters.jpg?ssl=1\"><img /></a>photo credit: reingestalter <a href=\"http://www.flickr.com/photos/44668468@N00/115805043\">numeral types</a> &#8211; <a href=\"https://creativecommons.org/licenses/by-sa/2.0/\">(license)</a>\n<p>It has been three weeks since the &#8220;Try Gutenberg&#8221; prompt was sent out in WordPress 4.9.8 and the <a href=\"https://wordpress.org/plugins/gutenberg/\" rel=\"noopener noreferrer\" target=\"_blank\">plugin</a> has now passed 200,000 active installations. The callout has increased the visibility of the Gutenberg project and brought necessary feedback to the development and design of the new editor.</p>\n<p>Prior to WordPress 4.9.8, Gutenberg reviews held a 2.7-star average on WordPress.org. Negative reviews continue to pour in and the average rating has slipped to 2.3 stars. Users are reporting that the new editor is too complicated, cumbersome, and that it offers an inferior writing experience. A few positive reviews are sprinkled in between, calling the editor a &#8220;necessary step forward,&#8221; and those reviewers seem hopeful that others will feel the same once they get past the learning curve. The vast majority of reviews, both positive and negative, report that Gutenberg&#8217;s interface is not yet intuitive to use.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2018/08/Screen-Shot-2018-08-24-at-10.32.49-AM.png?ssl=1\"><img /></a></p>\n<p>The Gutenberg team&#8217;s responses to reviews have improved to be less &#8220;canned&#8221; since the <a href=\"https://wptavern.com/gutenberg-plugin-garners-mixed-reactions-from-new-wave-of-testers\" rel=\"noopener noreferrer\" target=\"_blank\">initial reactions</a> a few days after the Gutenprompt went out. However, the team still appears to be combing the feedback for bugs with the existing interface. Overall, the team&#8217;s responses are unified in a general unwillingness to admit that there are critical flaws preventing the interface from being more well-received.</p>\n<p>Active installations of the <a href=\"https://wordpress.org/plugins/classic-editor/\" rel=\"noopener noreferrer\" target=\"_blank\">Classic Editor</a> plugin, the official antidote for those do not wish to adopt Gutenberg when it ships in WordPress 5.0, have climbed to more than 200,000. This number is about equal to the number of sites that have Gutenberg active. The Gutenberg team does not view Classic Editor installs as an important metric for understanding Gutenberg adoption or rejection but rather see these installs as a healthy intermediary step for sites keeping the same workflow while preparing for Gutenberg.</p>\n<p>In response to recent discussion surrounding the <a href=\"https://wptavern.com/classicpress-gutenberg-not-included\" rel=\"noopener noreferrer\" target=\"_blank\">ClassicPress fork of WordPress</a>, Matt Mullenweg <a href=\"https://wptavern.com/classicpress-gutenberg-not-included#comment-256813\" rel=\"noopener noreferrer\" target=\"_blank\">said</a>, &#8220;No plans to ever have direct vote determine strategic direction in WP, but we are having a bit of a referendum in the adoption of the Gutenberg and Classic Editor plugins, people are voting with their usage. The people are deciding.&#8221;</p>\n<p>This is essentially true in that users can decide if they want to adopt Gutenberg or not, for as long as the Classic Editor is supported. The Classic Editor plugin is an option people demanded but now the reality of two different admin experiences is nearer than before. The notion of a fork, though perhaps not a serious threat to the project, makes it painfully clear what some users are willing to do in order to avoid Gutenberg.</p>\n<p>With the number of Classic Editor plugin installations on the rise, WordPress is headed towards a fractured admin experience. For some it may be a healthy transition option, but in the end, the number of Classic Editor installations indicates how many sites will be running an alternative editing experience because site owners are either not ready or not willing to adopt Gutenberg.</p>\n<p>At some point in the future, WordPress will need to unite the editing experience, either by winning these users over to Gutenberg or by discontinuing support for the Classic Editor. In the meantime, WordPress product developers will need to provide support for both editing experiences or go all in on one or the other. It has the potential to erode WordPress&#8217; momentum for a few years, especially if Gutenberg doesn&#8217;t become more intuitive.</p>\n<h3>WordPress 4.9.9 Is Expected to be a 6-8 Week Maintenance Cycle</h3>\n<p>WordPress contributors met this week to <a href=\"https://make.wordpress.org/core/2018/08/24/dev-chat-summary-august-22-2018-4-9-9-weeks-1-2/\" rel=\"noopener noreferrer\" target=\"_blank\">discuss WordPress 4.9.9</a>.</p>\n<p>&#8220;As of now there’s no specific timeline for 4.9.9,&#8221; Jeff Paul said. &#8220;That will get set once release leads are in place. However, I’d like to try and finalize leads in next week’s meeting or shortly thereafter so that we can begin 4.9.9 planning and coordination as we get into September.&#8221; Paul requested contributor submit nominations for release leads, for themselves or others, ahead of next week&#8217;s meeting.</p>\n<p>&#8220;Until we have a confirmed timeline and plan for 5.0, my assumption is that we’ll continue with our minor release cadence of ~6-8 weeks with specific focus on items needed in support of 5.0,&#8221; Paul said.</p>\n<p>During his announcement at WordCamp Europe in Belgrade, Matt Mullenweg said WordPress 5.0 could happen as early as August. It&#8217;s now looking more likely that 5.0 will drop closer to the end of the year. This gives WordPress users and developers more time to prepare their sites to be compatible with Gutenberg and ready to take advantage of the new features it offers. The <a href=\"https://make.wordpress.org/core/5-0/\" rel=\"noopener noreferrer\" target=\"_blank\">schedule for releasing WordPress 5.0</a> is not yet set but the release is expected to happen in 2018.</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, 24 Aug 2018 18:55:12 +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: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:79:\"WPTavern: WordCamp Kochi is Postponed to November 3rd Due to Extensive Flooding\";s: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=83465\";s: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://wptavern.com/wordcamp-kochi-is-postponed-to-november-3rd-due-to-extensive-flooding\";s: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:2569:\"<p><a href=\"https://2018.kochi.wordcamp.org/\">WordCamp Kochi, India</a>, was originally scheduled for September 2nd, but due to heavy rains and extensive flooding in the area, the event has been <a href=\"https://2018.kochi.wordcamp.org/wordcamp-kochi-2018-is-postponed-to-november-3rd-2018-saturday/\">postponed</a> to November 3rd. The venue is unchanged.<br /></p>\n\n<p>Kochi is located in Southwest India in the coastal state of Kerala. The flooding has been so severe, the Kochi <a href=\"https://timesofindia.indiatimes.com/city/kochi/kerala-floods-kochi-airport-closure-extended-flights-likely-from-next-wednesday/articleshow/65504855.cms\">airport has been shutdown</a> since August 15th due to electrical damage. </p>\n\n<p>In addition to WordCamp being postponed, WooCommerce has also postponed its <a href=\"https://workshops.automattic.com/?utm_campaign=coschedule&utm_source=twitter&utm_medium=WooCommerce\">Women&#8217;s Workshop</a>.</p>\n\n\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">In light of current events, we\'ve decided to postpone the Women\'s Workshop. More info to come later today. <a href=\"https://t.co/TBfGGNWZW0\">https://t.co/TBfGGNWZW0</a></p>&mdash; WooCommerce (@WooCommerce) <a href=\"https://twitter.com/WooCommerce/status/1032533215347712000?ref_src=twsrc%5Etfw\">August 23, 2018</a></blockquote>\n\n\n<p>Organizers worked with WordCamp Community Support who agreed that the best course of action was to delay the event.</p>\n\n<blockquote class=\"wp-block-quote\"><p>Besides, one of the ethos of conducting a WordCamp is to ensure a safe space for attendees and participants. Since the state is still recovering from the floods, conducting a big event poses a lot of threats/challenges, like rain-borne diseases, unpredictable weather, etc.</p><cite>Hari Shanker R</cite></blockquote>\n\n<p>Tickets for WordCamp Kochi are <a href=\"https://2018.kochi.wordcamp.org/tickets/\">still available</a> and can be purchased from the event&#8217;s site. Women who use the <strong>WCK18WOMAN</strong> coupon code will receive a 40% discount off the ticket price. There&#8217;s also a <a href=\"https://2018.kochi.wordcamp.org/discounts/\">discounts page</a> with information on other ways you can reduce ticket prices.</p>\n\n<p>Those who purchased tickets for September 2nd can use the same ticket to attend November 3rd. If you purchased tickets for September 2nd and can not attend November 3rd, you&#8217;re encouraged to <a href=\"https://2018.kochi.wordcamp.org/contact/\">contact</a> the event&#8217;s organizers as refunds are not available. <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, 24 Aug 2018 18:31: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: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: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:21:\"Matt: Gulf Coast Soul\";s: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=48319\";s: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/08/gulf-coast-soul/\";s: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:558:\"<p>Brett Martin has an excellent longread in GQ, <a href=\"https://www.gq.com/story/houston-restaurants-capital-of-southern-cool\">Houston Is the New Capital Of Southern Cool</a>. I moved to San Francisco when I was 20, I hadn&#8217;t ever even been old enough to drink in Houston, but when I returned in my late twenties and really made it my home I was blown away at how much the city had changed in the time I had been away. Or maybe I just grew up enough to appreciate it. Regardless, Brett captures the verve and paradoxes of the city well.</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, 23 Aug 2018 22:23: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: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: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:90:\"WPTavern: New Network Media Library Plugin Creates a Shared Library on a Multisite Network\";s: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=83415\";s: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://wptavern.com/new-network-media-library-plugin-creates-a-shared-library-on-a-multisite-network\";s: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:3950:\"<p>WordPress core committer John Blackbourn has released a new plugin called <a href=\"https://github.com/johnbillion/network-media-library\" rel=\"noopener noreferrer\" target=\"_blank\">Network Media Library</a> that provides a shared media library across all sites on a WordPress multisite network. Blackbourn is an engineer at Human Made and the plugin is one he created for a client by forking Frank Bültge and Dominik Schilling&#8217;s <a href=\"https://github.com/bueltge/multisite-global-media\" rel=\"noopener noreferrer\" target=\"_blank\">Multisite Global Media</a> plugin.</p>\n<p>By default, the plugin uses site ID 2 for the central media library, but the site ID can be customized via a filter hook.  Access to the network-wide library is currently restricted to users who have Author level permissions with the upload_files capability on the central media site. In the plugin&#8217;s description Blackbourn said the plan for future versions is to remove the need for users to be added to the central media library.</p>\n<p>After testing it locally, I discovered what the plugin&#8217;s description meant by &#8220;transparently&#8221; uploading media to the central media site. Unlike other plugins that perform a similar function (i.e. <a href=\"https://wordpress.org/plugins/network-shared-media/\" rel=\"noopener noreferrer\" target=\"_blank\">Network Shared Media</a> and <a href=\"https://github.com/bueltge/multisite-global-media\" rel=\"noopener noreferrer\" target=\"_blank\">Multisite Global Media</a>), there is no indication that files are part of a network-wide library. For example, Multisite Global Media adds a &#8220;Global Media&#8221; tab to the media library to indicate which files are aggregated from sites on the network. The Network Media Library plugin works in an invisible way without adding a separate tab to the media library.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/08/Screen-Shot-2018-08-23-at-1.34.56-PM.png?ssl=1\"><img /></a></p>\n<p>Frank Bültge, co-author of the Multisite Global Media plugin, asked Blackbourn why he opted to fork the plugin instead of enhancing it. Blackbourn said the main difference is that the original plugin supports local media files and his fork does not.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">This was my original plan, but the main reason for the fork is the local media support in MGM means some bugs can\'t easily be fixed, eg. the featured image problem that we chatted about. The two plugins serve different purposes, MGM supports local media files, NML doesn\'t <img src=\"https://s.w.org/images/core/emoji/11/72x72/1f60a.png\" alt=\"😊\" class=\"wp-smiley\" />.</p>\n<p>&mdash; John Blackbourn <img src=\"https://s.w.org/images/core/emoji/11/72x72/1f1ea-1f1fa.png\" alt=\"🇪🇺\" class=\"wp-smiley\" /> (@johnbillion) <a href=\"https://twitter.com/johnbillion/status/1032361281741893632?ref_src=twsrc%5Etfw\">August 22, 2018</a></p></blockquote>\n<p></p>\n<p>Developers who implement Network Media Library on their sites should be aware that it is still under active development. It currently has built-in compatibility with the <a href=\"https://wordpress.org/plugins/regenerate-thumbnails/\" rel=\"noopener noreferrer\" target=\"_blank\">Regenerate Thumbnails</a> and <a href=\"https://wordpress.org/plugins/wp-user-avatars/\" rel=\"noopener noreferrer\" target=\"_blank\">WP User Avatars</a> plugins. The plugin also has been confirmed to be compatible with BuddyPress, Extended CPTs, Gutenberg, Stream and User Profile Picture. Blackbourn plans to test and support many more plugins in the future, including CMB2, ACF, and assorted gallery and media management plugins.</p>\n<p>Network Media Library is MIT-licensed and <a href=\"https://github.com/johnbillion/network-media-library\" rel=\"noopener noreferrer\" target=\"_blank\">available on GitHub</a>. It requires WordPress 4.9+ and PHP 7.0+. The plugin can be installed as a mu-plugin or network activated.</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, 23 Aug 2018 21:06: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: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:75:\"WPTavern: WordCamp for Publishers 2018 Videos Now Available on WordPress.tv\";s: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=83394\";s: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://wptavern.com/wordcamp-for-publishers-2018-videos-now-available-on-wordpress-tv\";s: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:2849:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/08/Screen-Shot-2018-08-22-at-12.39.59-PM.png?ssl=1\"><img /></a></p>\n<p><a href=\"https://2018-chicago.publishers.wordcamp.org/\" rel=\"noopener noreferrer\" target=\"_blank\">WordCamp for Publishers 2018</a> was held in Chicago earlier this month, bringing together a diverse group of people who use WordPress to manage publications. The event even <a href=\"http://www.niemanlab.org/2018/08/submissive-audiences-less-special-news-outlets-and-other-inspiring-thoughts-from-wordpresss-publisher-summit/\" rel=\"noopener noreferrer\" target=\"_blank\">got a nod from Nieman Lab</a>, who dubbed it &#8220;WordPress’ publisher summit,&#8221; and highlighted a few tweets from the <a href=\"https://twitter.com/search?f=tweets&vertical=default&q=wcpub&src=typd\" rel=\"noopener noreferrer\" target=\"_blank\">#wcpub</a> hashtag.</p>\n<p>&#8220;As conference organizers, we challenged speakers to touch on whether an open web ever truly existed, what state it’s in now, the consequences of a closed web, and how publishers can protect and encourage an open web,&#8221; Alexis Kulash, one of the event&#8217;s organizers, said in her <a href=\"https://vip.wordpress.com/2018/08/16/wordcamp-for-publishers-recap/\" rel=\"noopener noreferrer\" target=\"_blank\">recap post</a>.</p>\n<p>&#8220;Overall, we saw common themes emerge around empowering publishers to innovate and evolve. There was a shared belief that ethical journalism depends on an open web, with inclusivity as a fundamental building block to creating responsibly for the future.&#8221;</p>\n<p>Sessions included topics of interest to publishers both large and small, including AMP, Gutenberg, the effect of paywalls on the open web, communication between tech and editorial teams, newsletters, performance, and many other publishing-related topics.</p>\n<p>&#8220;Given that this is the only single-vertical official WordCamp it offers a rare perspective into a limited but very serious set of issues in a space,&#8221; Pantheon Community Manager Dwayne McDaniel said in his <a href=\"https://www.mcdwayne.com/2018/08/13/wc-for-publishers-2018-chicago/\" rel=\"noopener noreferrer\" target=\"_blank\">recap post</a>. &#8220;Having the official support and legitimacy of the WordCamp name brand I think adds a weight the organizers could not achieve otherwise, a claim I am going to support with the caliber of the participants as substantial evidence.&#8221;</p>\n<p>By all accounts the event was one of the best media conferences participants had ever attended. Recordings of the sessions started rolling out on WordPress.tv today. The videos can all be found on the same page listed under the <a href=\"https://wordpress.tv/event/wordcamp-for-publishers-chicago-2018/\" rel=\"noopener noreferrer\" target=\"_blank\">WordCamp for Publishers 2018 event</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, 23 Aug 2018 03:08: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: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: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:65:\"WPTavern: WPWeekly Episode 328 – Gutenberg, Forking, and cPanel\";s: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=83421&preview=true&preview_id=83421\";s: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/wpweekly-episode-328-gutenberg-forking-and-cpanel\";s: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:1841:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I start off by providing updates on some items from last week&#8217;s show. We discuss WordPress.com&#8217;s privacy policy change, the new detailed activity log in the WordPress for iOS app, and cPanel&#8217;s acquisition. We end the show with a thoughtful conversation about forking software.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/wordpress-com-boots-sandy-hook-conspiracy-theory-sites-bans-malicious-publication-of-unauthorized-images-of-minors\">WordPress.com Boots Sandy Hook Conspiracy Theory Sites, Bans Malicious Publication of Unauthorized Images of Minors</a><br />\n<a href=\"https://wptavern.com/wordpress-for-ios-10-6-adds-a-detailed-site-activity-log\">WordPress for iOS 10.6 Adds A Detailed Site Activity Log</a><br />\n<a href=\"https://wptavern.com/oakley-capital-to-acquire-cpanel\">Oakley Capital to Acquire cPanel</a><br />\n<a href=\"https://wptavern.com/drupal-org-migrates-developer-tools-to-gitlab\">Drupal.org Migrates Developer Tools to GitLab</a><br />\n<a href=\"https://wptavern.com/classicpress-gutenberg-not-included\">ClassicPress: Gutenberg Not Included</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, August 29th 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 #328:</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, 22 Aug 2018 23:56:16 +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: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:95:\"WPTavern: Mario Peshev Explains the Advantages of Gutenberg for Users who Rely on Page Builders\";s: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=83348\";s: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:106:\"https://wptavern.com/mario-peshev-explains-the-advantages-of-gutenberg-for-users-who-rely-on-page-builders\";s: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:3970:\"<p><a href=\"https://devwp.eu/\" rel=\"noopener noreferrer\" target=\"_blank\">Mario Peshev</a>, CEO of <a href=\"https://devrix.com/\" rel=\"noopener noreferrer\" target=\"_blank\">DevriX</a>, has published a video that explains how Gutenberg will change the way users create content. If your background as a WordPress user is maintaining your website with the help of a page builder like Beaver Builder, Divi Builder, Elementor, or a similar plugin, this video will acquaint you with a few advantages that Gutenberg will bring to content creation in the future.</p>\n<p></p>\n<p>Peshev demonstrates how Gutenberg will make it easier for users to add and arrange page content that actual websites need, such as call-to-action buttons, testimonials, headers, and columns. In the past, users have relied on page builders, page templates, widgetized areas, shortcodes, custom meta boxes, and a host of disparate ways of trying to place content in a certain arrangement on a page. All of these seem rather clunky now when compared to Gutenberg&#8217;s united interface, despite the new editor&#8217;s less than perfect implementation.</p>\n<p>This video helps users understand the problems Gutenberg aims to solve. Peshev explains that page builder tools usually have heavy, complicated code bases in order to work around the problem of adding blocks of content to a page. Gutenberg is not replacing page builders. In fact, most of them are updating to provide a better experience for users in the Gutenberg era, so agencies should be able to utilize some of the same tools they have used in the past while setting clients loose in the new editorial framework.</p>\n<p>&#8220;The video was first published on my LinkedIn feed, which is comprised of business leaders, marketing experts, freelancers &#8212; many of whom use WordPress at work or for their own businesses,&#8221; Peshev said.</p>\n<p>&#8220;They are not WordPress experts by any stretch, and rarely spend the time to test the &#8216;latest cool thing.&#8217; Odds are, some may have heard of it, but 95% haven&#8217;t even seen screenshots or demos of the new editorial experience.&#8221;</p>\n<p>As a digital consultant and the CEO of DevriX, a 30+ person agency, Peshev understands the need to assure users that their traditional content editing experience will still be available if they don&#8217;t want to use Gutenberg. He has been preparing his clients who fall on both sides of the 5.0 release &#8211; either to move forward with the new editor or employ the Classic Editor to maintain the old one.</p>\n<p>&#8220;At DevriX, we&#8217;ve been testing every site we manage and maintain monthly,&#8221; Peshev said. &#8220;We want to ensure that there are no unexpected regressions or fatal errors we have to deal with last minute. That said, half of our customers can benefit by using Gutenberg &#8212; we&#8217;ve had continuous conversations with them and align the roadmap accordingly. Others, on the other hand, are purely content-driven, a traditional WYSIWYG experience, and we have the Classic Editor ready to go once Gutenberg is live.&#8221;</p>\n<p>Peshev said his agency has had to find the balance between improving the editorial experience as needed (for things like landing pages and more robust sections), versus ensuring the stability and consistency of content development for traditional editorial teams. He urges other agency owners to push forward and embrace the custom work that Gutenberg will require.</p>\n<p>&#8220;Gutenberg is still in its infancy; there&#8217;s a lot of work left for us, agency owners and developers,&#8221; Peshev said. &#8220;Just as we used to build custom widgets, shortcodes, and page templates, we should build a series of Gutenblocks for every customer, prepare the corresponding templates, design the resulting front-end experience, and a lot more. Realistically, the editorial experience alone is a tiny chunk of the scope of WordPress development as a whole.&#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:\"Wed, 22 Aug 2018 17:08:06 +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:9;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:33:\"HeroPress: Have Faith In Yourself\";s: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=2607\";s: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:111:\"https://heropress.com/have-faith-in-yourself/#utm_source=rss&utm_medium=rss&utm_campaign=have-faith-in-yourself\";s: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:3622:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2016/08/081016-StaceyBartron-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: It may not all pan out, but I\'m along for the ride with WordPress in my backpack & I cannot wait to see where I end up.\" /><p>A couple years ago I was at Prestige Conf in Minneapolis. I noticed a young woman sitting by herself, patiently waiting for the talks to start, and thought I&#8217;d say hi. Her name was Stacey, and she was a freelance web developer and design expert. She was had recently quit her job to go freelance and this conference was part of her self-education.</p>\n<p>Our conversation brought back lots of memories of the excitement of when I first quit a good job to go freelance, but I was impressed by how much more attention to detail she&#8217;d paid than I had. I was a Bad Freelancer.</p>\n<p>A few weeks later it occurred to me that she might be willing to make the header banners for HeroPress essays. I asked, and she agreed at a price I could afford.  For a couple years now all of the banners you&#8217;ve seen on HeroPress were made by Stacey Bartron. No-one else has ever told me this, but I think the banners are pretty important to the essays and she&#8217;s done a wonderful, meaningful job.</p>\n<p>Stacey quit her job and went freelance because she had faith in her own abilities. Her skills were greater than the use to which they were being put at The Day Job. As it turns out, she was right.</p>\n<p>Check out Stacey&#8217;s very own HeroPress essay here:</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/finding-wordpress-fargo/\">Finding WordPress in Fargo</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: Have Faith In Yourself\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Have%20Faith%20In%20Yourself&via=heropress&url=https%3A%2F%2Fheropress.com%2Fhave-faith-in-yourself%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Have Faith In Yourself\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fhave-faith-in-yourself%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%2Fhave-faith-in-yourself%2F&title=Have+Faith+In+Yourself\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Have Faith In Yourself\"></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/have-faith-in-yourself/&media=https://heropress.com/wp-content/uploads/2016/08/081016-StaceyBartron-150x150.jpg&description=Have Faith In Yourself\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Have Faith In Yourself\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/have-faith-in-yourself/\" title=\"Have Faith In Yourself\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/have-faith-in-yourself/\">Have Faith In Yourself</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, 22 Aug 2018 08:00: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:\"\";}}}}}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:46:\"WPTavern: ClassicPress: Gutenberg Not Included\";s: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=83360\";s: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:56:\"https://wptavern.com/classicpress-gutenberg-not-included\";s: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:5995:\"<p>Depending on how far and deep you look, there is not a lot of positive sentiment surrounding Gutenberg. For Scott Bowler, the notion of merging Gutenberg into WordPress 5.0 represents a shift so <a href=\"https://medium.com/@scott.bowler83/classicpress-a-hard-fork-of-wordpress-without-gutenberg-1eeb62dd879c\">detrimental to the project</a>, he has forked WordPress into a new project called <a href=\"https://www.classicpress.net/\">ClassicPress</a>.</p>\n\n<p>&#8220;The team at WordPress have decided to force Gutenberg into v5 of WordPress despite <a href=\"https://wordpress.org/support/plugin/gutenberg/reviews/\" rel=\"noreferrer noopener\" target=\"_blank\">massive push back by the WordPress community,</a>&#8221; Bowler said.</p>\n\n<p>&#8220;I’m in the &#8216;push back&#8217; camp. After my feedback on Gutenberg fell on deaf ears I realized that WordPress is no longer a community led project — major decisions are being made by an elite few.</p>\n\n<p>&#8220;Sadly, I decided it was time to move to a fork that doesn’t have Gutenberg as part of the core code. A quick search revealed nobody had taken the initiative so I decided to stop complaining and take action.&#8221;</p>\n\n<p>In addition to ClassicPress, Bowler has <a href=\"https://www.change.org/p/petition-to-wordpress-no-gutenberg-in-wordpress-core\">filed a petition</a> on Change.org requesting that Gutenberg not be merged into WordPress 5.0. As of publishing, the petition has 10 out of 100 signatures.</p>\n\n<p>&#8220;This petition is to ask the WordPress team to keep Gutenberg out of the core of WordPress and instead keep it as a plugin for users to install,&#8221; Bowler said. &#8220;In addition, this petition asks that Gutenberg does not get integrated into the core until the community agrees that the time is right.&#8221;</p>\n\n<p>Bowler is not the only one who feels this way. Matt Cromwell, Head of Support and Community Outreach at <a href=\"https://wordimpress.com\">WordImpress</a>, suggests that Gutenberg be bundled with WordPress as a plugin similar to Aksimet. </p>\n\n\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">The more I think about <a href=\"https://twitter.com/hashtag/Gutenberg?src=hash&ref_src=twsrc%5Etfw\">#Gutenberg</a> as inevitable in WP Core, the more I am concerned that Core releases don\'t come often enough to support the kind of iterative improvements Gutes will need over the longterm.</p>&mdash; Matt Cromwell <img src=\"https://s.w.org/images/core/emoji/11/72x72/1f393.png\" alt=\"🎓\" class=\"wp-smiley\" /><img src=\"https://s.w.org/images/core/emoji/11/72x72/271d.png\" alt=\"✝\" class=\"wp-smiley\" /> (@learnwithmattc) <a href=\"https://twitter.com/learnwithmattc/status/1030588894796865536?ref_src=twsrc%5Etfw\">August 17, 2018</a></blockquote>\n\n\n\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Shipping <a href=\"https://twitter.com/hashtag/Gutenberg?src=hash&ref_src=twsrc%5Etfw\">#Gutenberg</a> as a default plugin like Akismet makes a lot of sense for several reasons.<br /><img src=\"https://s.w.org/images/core/emoji/11/72x72/2714.png\" alt=\"✔\" class=\"wp-smiley\" /> Allows for more iterative improvements<br /><img src=\"https://s.w.org/images/core/emoji/11/72x72/2714.png\" alt=\"✔\" class=\"wp-smiley\" /> Allows for quicker development<br /><img src=\"https://s.w.org/images/core/emoji/11/72x72/2714.png\" alt=\"✔\" class=\"wp-smiley\" /> Gives users more freedom of choice</p>&mdash; Matt Cromwell <img src=\"https://s.w.org/images/core/emoji/11/72x72/1f393.png\" alt=\"🎓\" class=\"wp-smiley\" /><img src=\"https://s.w.org/images/core/emoji/11/72x72/271d.png\" alt=\"✝\" class=\"wp-smiley\" /> (@learnwithmattc) <a href=\"https://twitter.com/learnwithmattc/status/1030588896281653249?ref_src=twsrc%5Etfw\">August 17, 2018</a></blockquote>\n\n\n<p>If Gutenberg ships with WordPress 5.0, Bowler says he is committed to maintaining compatibility with the WordPress ecosystem, keeping the project up to date with security fixes, and letting the community dictate its development.</p>\n\n<p>ClassicPress is based on WordPress 4.9.8 and is not available to the public yet. It&#8217;s in a consultation phase that interested users can participate in through the <a href=\"https://www.reddit.com/r/ClassicPress\">ClassicPress subreddit</a>. <br /></p>\n\n<h2>Forks Are a Good Thing, But This One Doesn&#8217;t Make Sense</h2>\n\n<p>I used to think that forking WordPress is the equivalent of the <a href=\"https://en.wikipedia.org/wiki/Nuclear_option\">nuclear option</a>, but <a href=\"https://www.youtube.com/watch?v=2Y6HcQcQWXU\">a presentation</a> by John James Jacoby in 2016 during WordSesh changed my perspective.</p>\n\n<p>Forking is a good thing as it allows people to take a project in their own direction. It opens the door for experimentation. If there are any lessons learned or improvements made, those can usually be pushed upstream to the main project.</p>\n\n<p>There are <a href=\"https://wordpress.org/plugins/classic-editor/\">solutions available</a> that allow users and site managers to keep the classic editor in place until a transition can be made. There&#8217;s also a Classic Editor block within Gutenberg that provides a similar user experience to the Classic Editor. </p>\n\n<p>With options available to not use or at least delay Gutenberg from becoming the new editor, and that&#8217;s <strong>if</strong> it&#8217;s merged into WordPress 5.0, ClassicPress isn&#8217;t so much of a necessary fork but rather, a last ditch effort to raise awareness to not merge Gutenberg into core. And that&#8217;s an unfortunate reason to fork WordPress. </p>\n\n<p>*<strong>Updated 8/21/2018</strong>* First paragraph was edited to &#8220;For Scott Bowler, the notion of merging Gutenberg into WordPress 5.0 represents a shift so <a href=\"https://medium.com/@scott.bowler83/classicpress-a-hard-fork-of-wordpress-without-gutenberg-1eeb62dd879c\">detrimental to the project</a>, he has forked WordPress into a new project called <a href=\"https://www.classicpress.net/\">ClassicPress</a>.&#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:\"Wed, 22 Aug 2018 01:40:53 +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: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:55:\"WPTavern: Drupal.org Migrates Developer Tools to GitLab\";s: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=83338\";s: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/drupal-org-migrates-developer-tools-to-gitlab\";s: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:4323:\"<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/08/Screen-Shot-2018-08-21-at-12.36.38-PM.png?ssl=1\"><img /></a>image credit: Drupal Association\n<p>The Drupal Association announced this week that Drupal.org will be <a href=\"https://www.drupal.org/drupalorg/blog/developer-tools-initiative-part-5-gitlab-partnership\" rel=\"noopener noreferrer\" target=\"_blank\">migrating its developer tools to GitLab</a>. In selecting a partner for modernizing the project&#8217;s tooling, the association aimed to preserve the most valuable parts of Drupal&#8217;s workflow. They also wanted a partner that would keep evolving its code collaboration featureset.</p>\n<p>In December 2017, after evaluating the advantages and disadvantages of GitHub, GitLab, and Bitbucket, it appeared the association would be moving forward with Bitbucket. If the comments on that <a href=\"https://www.drupal.org/drupalorg/blog/developer-tools-initiative-part-2-comparing-our-options\" rel=\"noopener noreferrer\" target=\"_blank\">discussion</a> are any indication, the Drupal community was not excited about the selection. GitLab reached out to comment on the status of some of the blockers the association had identified and worked privately with Drupal representatives to resolve those issues.</p>\n<p>&#8220;They have escalated the internal priority of issues that blocked our adoption of GitLab, offered technical and financial support for the migration, and made a commitment to ongoing support for the Drupal project,&#8221; Drupal Association&#8217;s director of engineering Tim Hestenes Lehnen said. The team plans to migrate Drupal.org&#8217;s 45,000 projects to GitLab over the coming months.</p>\n<p>&#8220;By adding merge requests, contributing to Drupal will become much more familiar to the broad audience of open source contributors who learned their skills in the post-patch era,&#8221; Lehnen said. &#8220;By adding inline editing and web-based code review, it will be much easier to make quick contributions. This not only lowers the barrier to contribution for people new to our community, it also saves significant effort for our existing community members, as they&#8217;ll no longer need to clone work locally and generate patches.&#8221;</p>\n<p>It&#8217;s easy to see how the WordPress project might also benefit from collaborating on a platform like GitLab. In October 2017, after the company <a href=\"https://wptavern.com/gitlab-raises-20-million-series-c-round-adds-matt-mullenweg-to-board-of-directors\" rel=\"noopener noreferrer\" target=\"_blank\">announced a $20 million Series C round of funding</a> and appointed Matt Mullenweg to its board of directors, WordPress contributors speculated about whether the project would move to GitLab.</p>\n<p>“It’s definitely something on our minds,&#8221; Mullenweg said when asked if GitLab and WordPress might collaborate in the future. &#8220;Core WordPress is still Trac and Subversion, so I think that it’s not our top priority this year, but in the future it’s definitely on the radar.”</p>\n<p>In 2016, GitLab worked to establish itself as the most welcoming platform for open source organizations after GitHub  <a href=\"https://wptavern.com/gitlab-courts-open-source-project-maintainers-with-response-to-dear-github-letter\" rel=\"noopener noreferrer\" target=\"_blank\">failed to address open source maintainers&#8217; concerns</a> in a timely way. The company began actively courting disgruntled GitHub users following <a href=\"https://wptavern.com/gitlab-courts-disgruntled-github-customers-with-response-to-recent-pricing-hike\" rel=\"noopener noreferrer\" target=\"_blank\">GitHub&#8217;s May 2016 pricing hike</a>.</p>\n<p>GitLab&#8217;s efforts to resolve critical issues for Drupal.org demonstrates the company&#8217;s commitment to ensure open source projects have what they need. Drupal.org&#8217;s transparency throughout the decision to migrate its developer tools enabled the project to respond to the community&#8217;s request to make GitLab work. It also prompted GitLab representatives to reach out with more information on the project&#8217;s blockers. As WordPress will be looking to move its developer tools to a new platform in the future, following along with Drupal.org&#8217;s migration experience as it progresses should be a good learning opportunity.</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, 21 Aug 2018 22:25:32 +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:33:\"Matt: Distributed Office Politics\";s: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=48317\";s: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:50:\"https://ma.tt/2018/08/distributed-office-politics/\";s: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:578:\"<p><a href=\"https://techcrunch.com/2018/08/18/distributed-teams-are-rewriting-the-rules-of-officeless-politics/\">This week I spoke with TechCrunch</a> about one facet of distributed work that differs from physical offices &#8212; the idea of &#8220;office politics.&#8221; I can&#8217;t claim that distributed work will solve everyone&#8217;s personal differences, but I do think it relieves some of the pressures that might come from forced cohabitation and environments that are prone to interruption. They also have some great points from Jason Fried and and Wade Foster.</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, 21 Aug 2018 16:38: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: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: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:42:\"WPTavern: Oakley Capital to Acquire cPanel\";s: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=83329\";s: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/oakley-capital-to-acquire-cpanel\";s: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:1850:\"<p><a href=\"https://cpanel.com/\">cPanel</a>, the makes of control panel software used by many hosting providers across the globe, has <a href=\"http://news.cpanel.com/oakley-capital-to-invest-in-cpanel-acquisition-will-accelerate-the-next-phase-of-product-development-for-cpanel/\">announced</a> it has signed an agreement to be acquired by <a href=\"http://oakleycapital.com/\">Oakley Capital</a>. Oakley Capital is a private equity investor that invests in companies primarily located in Western Europe. </p>\n\n<p>Financial details of the impending acquisition have not been disclosed. Oakley Capital is the same investment firm that <a href=\"http://oakleycapital.com/acquisition-of-plesk/\">acquired Plesk</a> in May of 2017. <a href=\"https://www.plesk.com/\">Plesk</a> is also control panel software used to manage sites.</p>\n\n<p>cPanel is based in Houston, TX with more than 220 employees. Employees will stay with the company and the headcount is expected to increase thanks to the investment. </p>\n\n<p>Nick Koston, cPanel&#8217;s CEO, issued the following statement in a press release. <br /></p>\n\n<blockquote class=\"wp-block-quote\"><p>This investment reflects a great step forward for cPanel. Our team has developed software that contributes to the success of millions of websites operating globally and looks forward to continuing to do so with the same passion that you, our loyal customers have come to love. </p><p>This investment will give Internet infrastructure providers access to a wider range of software, features and support. I am excited about what the future holds for the company and the great team at cPanel.</p><cite>Nick Koston</cite></blockquote>\n\n<p>Koston will remain as the company&#8217;s CEO and cPanel will continue to run as a separate entity. The acquisition needs to pass a governmental review before it is finalized.</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, 21 Aug 2018 05:10: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: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:94:\"WPTavern: How a Munich-based Game Studio is Using WordPress and Gutenberg to Power Its Website\";s: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=83280\";s: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/how-a-munich-based-game-studio-is-using-wordpress-and-gutenberg-to-power-its-website\";s: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:8017:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/08/Screen-Shot-2018-08-19-at-8.51.49-PM.png?ssl=1\"><img /></a></p>\n<p><a href=\"https://www.mimimi.games/\">Mimimi</a>, an award-winning game studio based in Munich, has launched a new WordPress website that provides an interesting case study of Gutenberg in the wild. Although you may not be able to tell from the frontend, behind the scenes the new block-based editor is powering the layout with custom blocks, allowing the Mimimi team to easily update various sections of their website.</p>\n<p><a href=\"https://www.luehrsen-heinrich.de/\">Luehrsen Heinrich</a>, a local ad agency, built the site with a custom theme and seven blocks tailored to support the Mimimi team&#8217;s editing requirements.</p>\n<p>&#8220;The general task was to create an elegant website that is very easy and fast to maintain and that will maybe later get a blog/news section,&#8221; Hendrik Luehrsen, CEO of Luehrsen Heinrich, said. &#8220;We knew our client has some amazingly creative and tech savvy people who trusted us. That made us confident to go into Gutenberg.&#8221;</p>\n<p>The site uses a background block that enables editors to create different background patterns and wavy separators. Luehrsen said it works with ‘InnerBlocks’, similar to columns, so it can host any other block.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/08/Bildschirmfoto-2018-08-19-um-00.37.07.png?ssl=1\"><img /></a></p>\n<p>The site also has a custom Discord block that dynamically fetches some settings to display a set of users from Discord, which Mimimi uses for internal communication. The block displays an updated team roster. Social media and game blocks enable editors to easily update text and images with the layout already set.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2018/08/Bildschirmfoto-2018-08-19-um-00.38.55-e1534729837643.png?ssl=1\"><img /></a></p>\n<p>&#8220;I am pretty sure we could do the same layout to about 80% by combining columns, paragraphs, and images, but we didn’t want our client to fiddle around like in MS Word when you try to place an image,&#8221; Luehrsen said. &#8220;So creating a simple layout block was a logical thing.&#8221;</p>\n<p>Mimimi&#8217;s website also uses a custom Mailchimp signup block and a custom spacer block that offers more flexibility and responsive breakpoints.</p>\n<p>&#8220;All in all we (and our clients) are very happy with the result,&#8221; Luehrsen said. &#8220;We can see the future of WordPress ahead with this block based editor. But there is still a very long way to go until we really have nothing to smooth out anymore. There are certain things, that still require a lot of work.&#8221;</p>\n<p>From a development perspective, Luehrsen said his team still struggles with the backend styles for the editor and that frontend and backend styles differ wildly because of that. They also haven&#8217;t yet found a maintainable, stable way of applying global styles to the Gutenberg editor. Other than those outstanding issues, the agency has enjoyed building for the new editor and has another Gutenberg-page product launching soon for a different set of clients.</p>\n<h3>Mimimi Games&#8217; Gutenberg Experience: Editors Appreciate the Block Concept but Still Encounter Usability Issues</h3>\n<p>Johannes Roth, CEO of Mimimi Games, said his team has used WordPress in the past and sees Gutenberg as a major improvement for editing content.</p>\n<p>&#8220;I absolutely love it, honestly!&#8221; Roth said. &#8220;It&#8217;s so much easier to understand the setup of the page and to customize it. If the Gutenberg editor gets a few user experience improvements, I definitely see it being the new state of the art for maintaining pages. But knowing that it&#8217;s still not officially released, it has been super robust and easy to understand from my point of view.&#8221;</p>\n<p>Roth said his team appreciates the block setup, the ability to reorganize content, having small chunks of content to work on, and having custom tailored options per block.</p>\n<p>&#8220;There are fewer distractions with weird toolbars and the focus is on content,&#8221; Roth said. &#8220;It also more closely resembles how we should think about splitting the formatting and decoration part from the content, as well as setting up proper pages for SEO friendliness.&#8221;</p>\n<p>Roth identified two things that the Mimimi team misses from the previous editor:</p>\n<ul>\n<li>Pressing tab to indent bullet lists and shift tab to reverse</li>\n<li>Using ctrl+a to quickly select all text inside a block (it sometimes selects the whole page, which doesn&#8217;t help).</li>\n</ul>\n<p>&#8220;The biggest issue with usability so far has been the combination of blocks and columns, which sometimes makes it really hard to hit the &#8216;&#8230;&#8217; icon because the mouseover zones get stacked,&#8221; Roth said.</p>\n<h3>Enabling Storytellers on the Modern Web: Why Luehrsen Heinrich Took the Leap into Gutenberg Development as an Agency</h3>\n<p>Luehrsen said his agency decided to board the Gutenberg train last year at WordCamp Europe, after ditching their own ideas for creating a new page builder.</p>\n<p>&#8220;One or two months before WCEU in Paris, we were sitting on a concept and an alpha version of our own page builder system that was frighteningly similar to the block based approach,&#8221; Luehrsen said. &#8220;That Q&amp;A by Matt made us quickly realize that our project was already obsolete. We were lucky that we went pretty quickly through the five stages of grief (<a href=\"https://www.wp-munich.com/wordpress/gutenberg-structured-data/\" target=\"_blank\" rel=\"noopener noreferrer\">this post</a> on structured data must have been “bargaining”). We reordered our priorities and started working with and on Gutenberg in the end of October or November of 2017.&#8221;</p>\n<p>Luehrsen Heinrich is a small agency of just four people who are all involved with Gutenberg in different ways. Luehrsen is an active contributor on the project, submitting <a href=\"https://github.com/WordPress/gutenberg/pull/4118\">his first PR</a> over the Christmas holidays. The team also has a developer who knows block creation inside and out, a designer who designs the UX and style of their blocks, and a project manager who works with the clients on their Gutenberg editing requirements.</p>\n<p>Luehrsen said being a Gutenberg contributor helped immensely with learning block creation, despite having no prior experience with React and ES6.</p>\n<p>&#8220;Working with Gutenberg, contributing to the project and getting immediate feedback from the amazing Gutenberg team, helped us a lot in bootstrapping our process,&#8221; Luehrsen said. &#8220;Our current block creation process builds heavily on the work Gary, Adam, Matias, and all the others have done, maybe with the exception that we are using LESS internally, and not SCSS. But from folder structure, to the build process, to the structuring of the file, we try to follow the Gutenberg repo style as closely as possible, as that makes debugging and finding issues very easy.&#8221;</p>\n<p>After successfully making the jump to build Mimimi Games&#8217; new Gutenberg-powered website, Luehrsen&#8217;s team is on board for building more client sites with the new editor. He sees it as a way to deliver a better user experience at a better value for the client.</p>\n<p>&#8220;Our clients share our belief that storytelling in the modern web is much more than just writing text,&#8221; Luehrsen said. &#8220;TinyMCE as a &#8216;Rich Text&#8217; editor did an amazing job, but still, combining different types of media to a coherent story was a mess with metaboxes, shortcodes, and sometimes for teasers you even had to leave the edit screen. Gutenberg combines all of this in a nice, unobtrusive way. And, as always: If you can get to a good result in a faster way, that time saved is what the client is essentially buying.&#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, 20 Aug 2018 18:54: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: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: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:30:\"Matt: Light Heretofore Unknown\";s: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=48313\";s: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:46:\"https://ma.tt/2018/08/light-heretofore-unkown/\";s: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:567:\"<blockquote class=\"wp-block-quote\"><p>Yes, it is a press, certainly, but a press from which shall soon flow in inexhaustible streams the most abundant and most marvelous liquor that has ever flowed to relieve the thirst of man! [&#8230;.] A spring of pure truth shall flow from it! Like a new star, it shall scatter the darkness of ignorance, and cause a light heretofore unknown to shine among men.</p><cite>— Johannes Gutenberg</cite></blockquote>\n\n<p>From <a href=\"https://dan.knauss.ca/\">Dan Knauss</a> via <a href=\"https://poststatus.com/\">Post Status</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, 20 Aug 2018 15:31:53 +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: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:45:\"WPTavern: My Gutenberg Experience: Part Three\";s: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=83102\";s: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://wptavern.com/my-gutenberg-experience-part-three\";s: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:4815:\"<p>It&#8217;s been about four months since the last time I <a href=\"https://wptavern.com/an-update-to-my-gutenberg-experience\">shared my experience</a> with Gutenberg. In that time, there have been sixteen releases. The more I use Gutenberg, the more nuances I encounter.</p>\n\n<h3>Disruptive Writing Flow</h3>\n\n<p>When writing a post, I press the enter key at the end of a paragraph. This creates a new paragraph block automatically. Sometimes however, I want the next block to be an Image block. The paragraph block does not have an option to be converted into another block.</p>\n\n<img />No Option to Convert to Another Block\n\n<p>I end up having to remove the paragraph block, look for the add block icon, and add the image block. This process of rearranging blocks disrupts the flow of writing. </p>\n\n<p>There are a few ways to get around this issue. The first is to not press enter at the end of a paragraph so I can add the block that I want. </p>\n\n<p>The second is to type /image inside the paragraph block which will automatically convert it to an image block. This is convenient but it&#8217;s a power user shortcut that&#8217;s difficult to discover without someone telling you about it. It&#8217;s weird that using a shortcut can convert a paragraph block to an image block but the user interface option to convert it doesn&#8217;t exist.</p>\n\n<h3>Icons Not Associated With a Block Floating in Empty Space<br /></h3>\n\n<p>In the image below is a CloudUp embed block that has a video and below it are three icons. I sometimes think these icons are related to the block above it but instead, these icons are part of the add block placeholder UI. </p>\n\n<img />Block Icons Look Like They&#8217;re For Another Block\n\n<p>Granted, a list, image, and quote icon has nothing to do with embedding videos. At-a-glance, seeing these icons can lead to a bit of confusion. I don&#8217;t want to see those icons floating in empty space when I&#8217;m working on a block they&#8217;re not attached too. <br /></p>\n\n<h3>Losing Content Due to Autosave Disconnecting<br /></h3>\n\n<p>While writing a post working remotely, I noticed the Autosave button in Gutenberg was continuously flashing. I&#8217;ve experienced something similar in the classic editor and suspected that a connection issue must have happened although I was browsing the internet without a problem.</p>\n\n<p>I finished writing the post, added meta data, and a featured image. I copied all of the content on the post, refreshed the page, and confirmed I wanted to leave the page. It turns out, my suspicion was right. </p>\n\n<p>At some point, the autosave process stopped working and I lost half the post, including the meta data. I was able to paste the lost content into the editor and go about my day. </p>\n\n<p>The current editor has fail-safes in place to prevent the loss of content, such as using a browser&#8217;s local storage. I&#8217;m unsure if Gutenberg has the same fail-safes in place. So far, this has been the only time where I&#8217;ve lost content in Gutenberg due to autosave not working correctly. </p>\n\n<h3>Digging Through the Junk Drawer</h3>\n\n<p>In the classic editor, the tool bar stays in constant view. In Gutenberg, there are multiple areas on the screen where UI elements appear and disappear depending on where the cursor is. </p>\n\n<p>If you want to see the code version of the editor, you need to click the ellipsis on the top right corner and select it from a drop-down menu. To add a new block, you have to click the + symbol and either search or select from a menu. </p>\n\n<p>The combination of visiting different parts of the editor, browsing through menus, and selecting from multiple things sometimes feels like I&#8217;m going through the junk drawer in the kitchen looking for a utensil. This feeling occurs multiple times depending on the length of a post. </p>\n\n<h3>There&#8217;s Still a Ways to Go</h3>\n\n<p>I&#8217;ve been able to get used to the block concept and actually prefer it over the classic editor. However, there are certain tasks that are easier and faster to accomplish in the classic editor versus Gutenberg. </p>\n\n<p>For example, if you want to create a heading using existing text in Gutenberg, you have to select the text, click the Paragraph icon, select the heading block, and choose which heading you want. In the Classic editor, you select the text, click the preferred heading from an always visible drop-down menu and continue writing. </p>\n\n<p>These nuances to the writing flow, the user interface, and the experience of looking around for things is where I believe Gutenberg needs the most improvement. The bar has been set by the Classic editor but it has more than 10 years of iteration behind it. Hopefully, Gutenberg can reach or exceed that bar before it&#8217;s merged into core. <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, 17 Aug 2018 22:32:58 +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: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:58:\"WPTavern: Gutenberg 3.6 Adds New Icons for All Core Blocks\";s: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=83242\";s: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://wptavern.com/gutenberg-3-6-adds-new-icons-for-all-core-blocks\";s: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:5014:\"<p><a href=\"https://make.wordpress.org/core/2018/08/17/whats-new-in-gutenberg-17th-august/\" rel=\"noopener noreferrer\" target=\"_blank\">Gutenberg 3.6</a> was released today, featuring a <a href=\"https://github.com/WordPress/gutenberg/pull/8916\" rel=\"noopener noreferrer\" target=\"_blank\">design overhaul for the core icons</a> in the block inserter. The blocks now use <a href=\"https://material.io/tools/icons/\" rel=\"noopener noreferrer\" target=\"_blank\">Material icons</a>, which offer more options than the Dashicons. This update also improves the icons for the core embeds, which now display the corresponding icon for each embed service.</p>\n<p>Gutenberg testers <a href=\"https://github.com/WordPress/gutenberg/issues/3736\" rel=\"noopener noreferrer\" target=\"_blank\">logged an issue</a> regarding the limitations of Dashicons last year, citing the small number available, the inadequacy of their size, and the generic substitutions for embed service icons. The Gutenberg team <a href=\"https://github.com/WordPress/gutenberg/issues/3736#issuecomment-355267596\" rel=\"noopener noreferrer\" target=\"_blank\">closed the ticket</a>, saying there was no sign in testing that showed the icons to be a problem and that potential contributors would need to &#8220;revisit with evidence&#8221; if they wanted to re-open the issue.</p>\n<p>It&#8217;s not clear whether the team received the evidence or testing required to make this change but the icons become problematic in other ways. As the community started extending Gutenberg, block icon duplication became a problem, due to the limited number of Dashicons available.</p>\n<p>&#8220;We really need block icons to move away from using dashicons as soon as possible,&#8221; Gutenberg technical lead Matías Ventura said in another discussion on a proposed solution. &#8220;We are already seeing plugins adding blocks where the icon overlap is very high just because of the limited icons set, which reduces clarity for users very drastically.&#8221;</p>\n<p><a href=\"https://github.com/WordPress/gutenberg/issues/8719\" rel=\"noopener noreferrer\" target=\"_blank\">Switching to Material icons</a> solves this problem, ensuring there are unique icons for each block. The inserter design has also been updated as part of this overhaul. Previously, icons appeared with a grey background, as seen below:</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/08/Screen-Shot-2018-08-17-at-12.51.51-PM.png?ssl=1\"><img /></a></p>\n<p>The old design suddenly looks rather dated in comparison to Gutenberg&#8217;s 3.6 update, which allows for more whitespace around the icons:</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2018/08/Screen-Shot-2018-08-17-at-12.53.39-PM.png?ssl=1\"><img /></a></p>\n<p>The new embed icons are also greatly improved from previous versions of the plugin:</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/08/Screen-Shot-2018-08-17-at-4.09.01-PM.png?ssl=1\"><img /></a></p>\n<p>&#8220;The new icons aim to encourage people creating their own blocks to supply their own SVG,&#8221; Ventura said. &#8220;The hope is to make sure we can avoid multiple cases of duplicated icons diminishing the overall ability to quickly scan blocks.&#8221;</p>\n<p>Ventura said Gutenberg will retain the ability to specify a Dashicon slug in the Block API but he encourages developers to &#8220;supply custom SVGs (or draw from the material icon pool) as much as possible.&#8221;</p>\n<p>Gutenberg 3.6 also <a href=\"https://github.com/WordPress/gutenberg/pull/8279\" rel=\"noopener noreferrer\" target=\"_blank\">adds several new keyboard shortcuts</a>, including inserting a new block before/after the current block, toggling the inspector settings, removing a block, and displaying a <a href=\"https://github.com/WordPress/gutenberg/pull/8316\" rel=\"noopener noreferrer\" target=\"_blank\">new modal help menu</a>. The modal can be launched from the Settings button at the top of the editor and users can scroll through all available shortcuts.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/08/Screen-Shot-2018-08-17-at-4.16.53-PM.png?ssl=1\"><img /></a></p>\n<p>This release also fixes many bugs that users have reported. Gutenberg will now <a href=\"https://github.com/WordPress/gutenberg/pull/8446\" rel=\"noopener noreferrer\" target=\"_blank\">open a new preview window</a> if the prior window has been closed. It will also <a href=\"https://github.com/WordPress/gutenberg/pull/9015\" rel=\"noopener noreferrer\" target=\"_blank\">bring the preview tab to the front</a> when clicking the preview button. Version 3.6 <a href=\"https://github.com/WordPress/gutenberg/pull/9010\" rel=\"noopener noreferrer\" target=\"_blank\">fixes several usability issues</a> that testers found with the permalink UI. Check out the <a href=\"https://make.wordpress.org/core/2018/08/17/whats-new-in-gutenberg-17th-august/\" rel=\"noopener noreferrer\" target=\"_blank\">release post</a> for the full list of all the fixes and changes included in 3.6.</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, 17 Aug 2018 21:31:44 +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: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:29:\"Donncha: WP Super Cache 1.6.3\";s: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:28:\"https://odd.blog/?p=89502017\";s: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://odd.blog/2018/08/17/wp-super-cache-1-6-3/\";s: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:4891:\"<p>WP Super Cache is a full page caching plugin for WordPress. When a page is cached almost all of WordPress is skipped and the page is sent to the browser with the minimum amount of code executed. This makes the page load much faster.</p>\n\n<p>1.6.3 is the latest release and is mostly a bugfix release but it also adds some new features.</p>\n\n<ul><li>Added cookie helper functions (<a href=\"https://github.com/Automattic/wp-super-cache/pull/580\">#580</a>)</li><li>Added plugin helper functions (<a href=\"https://github.com/Automattic/wp-super-cache/pull/574\">#574</a>)</li><li>Added actions to modify cookie and plugin lists. (<a href=\"https://github.com/Automattic/wp-super-cache/pull/582\">#582</a>)</li><li>Really disable garbage collection when timeout = 0 (<a href=\"https://github.com/Automattic/wp-super-cache/pull/571\">#571</a>)</li><li>Added warnings about DISABLE_WP_CRON (<a href=\"https://github.com/Automattic/wp-super-cache/pull/575\">#575</a>)</li><li>Don&#8217;t clean expired cache files after preload if garbage collection is disabled (<a href=\"https://github.com/Automattic/wp-super-cache/pull/572\">#572</a>)</li><li>On preload, if deleting a post don&#8217;t delete the sub directories if it&#8217;s the homepage. (<a href=\"https://github.com/Automattic/wp-super-cache/pull/573\">#573</a>)</li><li>Fix generation of semaphores when using WP CLI (<a href=\"https://github.com/Automattic/wp-super-cache/pull/576\">#576</a>)</li><li>Fix deleting from the admin bar (<a href=\"https://github.com/Automattic/wp-super-cache/pull/578\">#578</a>)</li><li>Avoid a strpos() warning. (<a href=\"https://github.com/Automattic/wp-super-cache/pull/579\">#579</a>)</li><li>Improve deleting of cache in edit/delete/publish actions (<a href=\"https://github.com/Automattic/wp-super-cache/pull/577\">#577</a>)</li><li>Fixes to headers code (<a href=\"https://github.com/Automattic/wp-super-cache/pull/496\">#496</a>)</li></ul>\n\n<p>This release makes it much easier for plugin developers to interact with WP Super Cache. In the past a file had to be placed in the &#8220;WP Super Cache plugins directory&#8221; so that it would be loaded correctly but in this release I&#8217;ve added new actions that will allow you to load code from other directories too.</p>\n\n<p>Use the <strong>wpsc_add_plugin</strong> action to add your plugin to a list loaded by WP Super Cache. Use it like this:<br /></p>\n\n<pre class=\"wp-block-preformatted\">do_action( \'wpsc_add_plugin\', WP_PLUGIN_DIR . \'/wpsc.php\' )</pre>\n\n<p>You can give it the full path, with or without ABSPATH. Use it after &#8220;init&#8221;. It only needs to be called once, but duplicates will not be stored.</p>\n\n<p>In a similar fashion, use <strong>wpsc_delete_plugin</strong> to remove a plugin.</p>\n\n<p>The release also makes it much simpler to modify the cookies used by WP Super Cache to identify &#8220;known users&#8221;. This is useful to identify particular types of pages such as translated pages that should only be shown to certain users. For example, visitors who have the English cookie will be shown cached pages in English. The German cookie will fetch German cached pages. The action <strong>wpsc_add_cookie</strong> makes this possible.</p>\n\n<pre class=\"wp-block-preformatted\">do_action( \'wpsc_add_cookie\', \'language\' );</pre>\n\n<p>Execute that in your plugin and WP Super Cache will watch out for the language cookie. The plugin will use the cookie name <em>and</em> value in determining what cached page to display. So &#8220;language = irish&#8221; will show a different page to &#8220;language = french&#8221;.</p>\n\n<p>Use <strong>wpsc_delete_cookie</strong> to remove a cookie. Cache files won&#8217;t be deleted. It&#8217;s doubtful they&#8217;d be served however because of the hashed key used to name the filenames.<br /></p>\n\n<pre class=\"wp-block-preformatted\">do_action( \'wpsc_delete_cookie\', \'language\' );</pre>\n\n<p>If you&#8217;re going to use either of the plugin or cookie actions here I recommend using <strong>Simple Caching</strong>. While the plugin will attempt to update mod_rewrite rules, it is much simpler to have PHP serve the files. Apart from that, any plugins loaded by WP Super Cache will be completely skipped if Expert mode is enabled.</p>\n\n<p><strong>Related Posts</strong><ul><li> <a href=\"https://odd.blog/2008/10/24/wp-super-cache-084-the-garbage-collector/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.8.4, the garbage collector\">WP Super Cache 0.8.4, the garbage collector</a></li><li> <a href=\"https://odd.blog/2009/01/09/wp-super-cache-087/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.8.7\">WP Super Cache 0.8.7</a></li><li> <a href=\"https://odd.blog/2010/02/08/wp-super-cache-099/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.9.9\">WP Super Cache 0.9.9</a></li></ul></p>\n<p><a href=\"https://odd.blog/2018/08/17/wp-super-cache-1-6-3/\" rel=\"nofollow\">Source</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, 17 Aug 2018 16:36: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:7:\"Donncha\";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:66:\"WPTavern: WordPress for iOS 10.6 Adds A Detailed Site Activity Log\";s: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=83231\";s: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:77:\"https://wptavern.com/wordpress-for-ios-10-6-adds-a-detailed-site-activity-log\";s: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:3569:\"<p>In the past few months, the <a href=\"https://apps.wordpress.com/mobile/\">WordPress mobile application</a> for iOS has quietly received a steady round of improvements. Version 10.5 increased its compatibility with Gutenberg. <a href=\"https://wptavern.com/wordpress-for-ios-and-gutenberg-dont-get-along\">Earlier this year</a>, Gutenberg and the iOS app didn&#8217;t get along particularly well. </p>\n\n<p>About a month ago in 10.4, an activity log was added that allows users to see a detailed list of activities on their sites. In 10.6, the most recent version, the activity log is now available for free WordPress.com sites and those connected with Jetpack.</p>\n\n<img />WordPress for iOS Activity Log\n\n<p>As you can see in the screenshot above, comment activity, post and page activity, and generally all site activity shows up in the log. </p>\n\n<p>Selecting an activity displays detailed information such as who performed the action, their role, IP address, and other information depending on the activity. The log displays the last 20 activities performed on the site.</p>\n\n<p>It&#8217;s unclear exactly what data the activity log monitors, where or if it&#8217;s saved, how it&#8217;s generated, and how users can turn it off. Browsing around the mobile app, I was unable to find a way to disable the activity log.</p>\n\n<h2>The WordPress Mobile Team is Quiet But Busy</h2>\n\n<p>If it weren&#8217;t for the change logs on the iTunes Store, it would be difficult for users to know what&#8217;s going on with the app. The project&#8217;s <a href=\"https://github.com/wordpress-mobile/WordPress-iOS\">GitHub page</a> is buzzing with activity, but more public facing means of communication are not. <br /></p>\n\n<p>The WordPress for iOS app <a href=\"https://twitter.com/wordpressios?lang=en\">Twitter account</a> has been dormant since May. The <a href=\"https://apps.wordpress.com/blog/\">WordPress Mobile apps blog</a> hasn&#8217;t published a new post since 2016 and some of the posts that highlight new features are on the official <a href=\"https://en.blog.wordpress.com/\">WordPress.com blog</a>.</p>\n\n<p>Sure, not every release requires a full-featured post, but the activity log is a feature that I think warrants one. An explanation of why it was created, how it works, and how users not interested in it can disable it. </p>\n\n<p>The WordPress for iOS app is <a href=\"https://apps.wordpress.com/contribute/\">open source</a> and available for free from the <a href=\"https://search.itunes.apple.com/WebObjects/MZContentLink.woa/wa/link?mt=8&path=apps%2fWordPress\">Apple iTunes App Store</a>. You can also find links to the Android and Desktop apps on the <a href=\"https://apps.wordpress.com/\">WordPress.com Apps site</a>. </p>\n\n<h2>*Update*</h2>\n\n<p>After this article was published, I was given a <a href=\"https://jetpack.com/support/activity-log/\">link to a support document</a> on the Jetpack website that explains the activity log feature in more detail. The document <a href=\"https://jetpack.com/support/activity-log/#data-retention\">links to a list of activities</a> along with their retention periods which vary based on the plan attached to the user&#8217;s WordPress.com account. </p>\n\n<p>Only the most recent 1,000 events are displayed in the log. As noted at the end of the article, once the retention period ends for activity data, it&#8217;s moved to long-term storage where it is retained indefinitely. Data held in long-term storage is removed from the activity log.</p>\n\n<p>According to the document, there is no way to deactivate this feature. <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, 16 Aug 2018 22:12:44 +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:125:\"WPTavern: WordPress.com Boots Sandy Hook Conspiracy Theory Sites, Bans Malicious Publication of Unauthorized Images of Minors\";s: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=83171\";s: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:135:\"https://wptavern.com/wordpress-com-boots-sandy-hook-conspiracy-theory-sites-bans-malicious-publication-of-unauthorized-images-of-minors\";s: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:13585:\"<p>WordPress.com came under fire this week for hosting a site with conspiracy theories claiming the Sandy Hook Elementary School shooting was a hoax. The New York Times published an article titled &#8220;<a href=\"https://www.nytimes.com/2018/08/13/business/media/sandy-hook-conspiracies-leonard-pozner.html\" rel=\"noopener noreferrer\" target=\"_blank\">This Company Keeps Lies About Sandy Hook on the Web</a>,&#8221; setting off a hailstorm of angry posts on social media that demanded Automattic take action.</p>\n<p>“Posting conspiracy theories or untrue content is not banned from WordPress.com, and unfortunately this is one of those situations,” Automattic told the New York Times in a statement. “It is a truly awful situation, and we are sympathetic to the Pozner family.”</p>\n<p>Leonard Pozner, father of Sandy Hook Elementary shooting victim Noah Pozner, claims that images of his son were being misused on a WordPress.com-hosted site where the author denied the tragedy and called his son a crisis actor. He filed copyright infringement claims on the images used on the conspiracy site in an attempt to get the content removed.</p>\n<p>Automattic examined the images and determined that there was nothing illegal about their use on the site. The company sent Pozner a reply that said, &#8220;because we believe this to be fair use of the material, we will not be removing it at this time.&#8221;</p>\n<p>In the New York Times article, Automattic admits its insensitivity in handling the situation, apologizing to the family, but said the posts in question &#8220;are not violating any current user guidelines, or copyright law.&#8221;</p>\n<p>&#8220;The pain that the family has suffered is very real and if tied to the contents of sites we host, we want to have policies to address that,&#8221; Automattic told the New York Times.</p>\n<h3>WordPress.com Updates it Privacy Policy, Banning Malicious Publication of Unauthorized, Identifying Images of Minors</h3>\n<p>After consulting with the Internet Archive&#8217;s Wayback Machine, it appears WordPress.com has quietly updated its privacy policy, which now includes unauthorized images of minors on the list of things the platform considers private information. The <a href=\"https://web.archive.org/web/20180201091159/https://en.support.wordpress.com/private-information/\" rel=\"noopener noreferrer\" target=\"_blank\">previous policy</a> appears below:</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/08/Screen-Shot-2018-08-16-at-8.29.14-AM.png?ssl=1\"><img /></a></p>\n<p>The <a href=\"https://en.support.wordpress.com/private-information/\" rel=\"noopener noreferrer\" target=\"_blank\">updated policy</a> adds &#8220;the malicious publication of unauthorized, identifying images of minors&#8221; to that list.</p>\n<p>Searching Twitter for discussion surrounding Sandy Hook conspiracy sites turns up a slew of tweets calling on people to boycott WordPress.com and other Automattic products. However, there are also responses on the other end of the spectrum, with Sandy Hook conspiracy theorist supporters retweeting a user who claims that WordPress.com has shut down his site.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Minutes ago this morning, I discovered that WordPress has unilaterally and without warning shut down Fellowship of the Minds for alleged violations of \"Terms of Service\". I will explore finding another server for FOTM. Please pray for America.</p>\n<p>&mdash; Eowyn (@DrEowyn) <a href=\"https://twitter.com/DrEowyn/status/1029338304376795136?ref_src=twsrc%5Etfw\">August 14, 2018</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">WordPress just suspended my interim blog The Fundamental Option as well. That blog has been active for only the past 2 days, so what possible \"terms of service\" could have have violated? It\'s war, folks. America is entering into very dark days. Be prepared.</p>\n<p>&mdash; Eowyn (@DrEowyn) <a href=\"https://twitter.com/DrEowyn/status/1029788566459625472?ref_src=twsrc%5Etfw\">August 15, 2018</a></p></blockquote>\n<p></p>\n<p>The site in question (fellowshipofminds.com) appears to have been removed, along with an interim site the author created following the first suspension. <a href=\"https://twitter.com/memoryholeblog/status/1029415973500137479\" rel=\"noopener noreferrer\" target=\"_blank\">A number of other related sites</a> have also recently been removed. These events are outlined in <a href=\"http://memoryholeblog.org/2018/08/14/wordpress-automattic-shuts-down-fellowshipoftheminds/\" rel=\"noopener noreferrer\" target=\"_blank\">a post on memoryholeblog.org</a>, a site maintained by James F. Tracy, a former professor of journalism and media who became known for his research questioning the Sandy Hook Elementary School massacre and Boston Marathon bombing. Tracy&#8217;s blog was also removed from WordPress.com in 2016 for violation of Automattic’s Terms of Service.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/08/Screen-Shot-2018-08-16-at-8.48.40-AM.png?ssl=1\"><img /></a></p>\n<p>Automattic did not detail specific infractions in either case of removal. It&#8217;s not clear whether the site referenced in the New York Times article was removed for a new offense or a previous one. The removals seem to have coincided with WordPress.com&#8217;s updated privacy policy, but Automattic&#8217;s PR department has not responded to a request for comment on the matter.</p>\n<p>&#8220;As with Automattic’s treatment of MHB, FOTM’s disappearance strongly suggests how WordPress.com’s policies are being tailored to placate outside parties whose foremost interest is in stifling political speech on potential high crimes, and how in this instance such poorly-founded grounds for censorship have triumphed over free speech,&#8221; Tracy said.</p>\n<p>Historically, Automattic has been a stalwart defender of free speech on the web. It&#8217;s outlined as part of the <a href=\"https://en.support.wordpress.com/user-guidelines/\" rel=\"noopener noreferrer\" target=\"_blank\">WordPress.com&#8217;s User Guidelines</a>:</p>\n<blockquote><p>WordPress.com strongly believes in freedom of speech. We have a vast audience spread across many cultures, countries and backgrounds with varying values and our service is designed to let users freely express any ideas and opinions without us censoring or endorsing them.</p></blockquote>\n<p>It&#8217;s not clear whether Automattic changed its policy in response to this situation or whether this situation revealed holes in it that the company wanted to improve. In either case, the policy change seems to have enabled Automattic to do what outraged onlookers wanted them to do, except outside of the emotional mandate issued by the New York Times.</p>\n<p>Without the new privacy policy in place, removal of a site based on offensive material constitutes censorship. Automattic had already determined that the post using the child&#8217;s image, while distasteful and offensive, was fair use for the material. The image had likely already been used thousands of times by news organizations with a different narrative attached to it that is more in alignment with the majority&#8217;s view of the tragedy.</p>\n<p>As it is a private company, Automattic&#8217;s terms of service do not have to reflect the full freedom of speech allowed by the law. However, the company has always upheld its reputation in the past as an uncompromising defender of its users when presented with requests for censorship.</p>\n<p>In a recent <a href=\"https://www.techdirt.com/articles/20180206/10271639166/why-allegedly-defamatory-content-wordpresscom-doesnt-come-down-without-court-order.shtml\" rel=\"noopener noreferrer\" target=\"_blank\">post on Techdirt</a>, Automattic general counsel Paul Sieminski and Holly Hogan detail how WordPress.com handles its role in managing intermediary liability when the company receives complaints regarding defamatory content:</p>\n<blockquote><p>Making online hosts and other intermediaries like WordPress.com liable for the allegedly defamatory content posted by users is often criticized for burdening hosts and stifling innovation. But intermediary liability isn&#8217;t just bad for online hosts. It&#8217;s also terrible for online speech. The looming possibility of writing a large check incentivizes hosts like Automattic to do one thing when we first receive a complaint about content: Remove it. That decision may legally protect the host, but it doesn&#8217;t protect users or their online speech.</p></blockquote>\n<p>That article explains the level of nuance involved in handling complaints and the costs associated with protecting its users&#8217; freedom of speech. Automattic&#8217;s counsel concludes with an observation that &#8220;leaving such important decisions to the discretion of Internet hosts is misplaced and tilts the balance in favor of silencing often legitimate voices.&#8221;</p>\n<h3>WordPress.com is a Host for Websites, Not a Social Media Silo</h3>\n<p>WordPress.com&#8217;s platform is distinct from social networks in that it is not a social media silo. It acts more as a host and cannot have one-off shutdowns of sites anytime there is a public outcry.</p>\n<p>&#8220;WordPress.com is much closer to being a common carrier than Facebook and other social media,&#8221; Dan Kennedy, associate professor at Northeastern University&#8217;s school of Journalism, <a href=\"https://twitter.com/dankennedy_nu/status/1029343514243616769\" rel=\"noopener noreferrer\" target=\"_blank\">said</a> in response to the NYT article. &#8220;That difference really doesn’t get highlighted here.&#8221;</p>\n<p>Self-hosted WordPress (.org) user and data journalist Matt Stiles also <a href=\"https://twitter.com/stiles/status/1029220655013609472\" rel=\"noopener noreferrer\" target=\"_blank\">commented on the distinction</a>, and followed up with me privately, identifying WordPress.com as &#8220;a free-speech sidewalk for the Internet.&#8221;</p>\n<p>&#8220;WordPress.com needs to make clear to the public that it&#8217;s a host, not a place that controls &#8212; through algorithms or other curation, and revenue — content,&#8221; Stiles said. &#8220;I am NOT a supporter of sites like this. I just want WordPress to thrive as an open-source tool and as an important paid host for web sites. I&#8217;m also worried about WordPress.com having to make arbitrary decisions about content. It&#8217;s tough to define hate speech. We know it when we see it, but I worry about censorship on private platforms.&#8221;</p>\n<p>Dave Winer also <a href=\"http://scripting.com/2018/08/16/132055.html\" rel=\"noopener noreferrer\" target=\"_blank\">commented</a> that the article failed to capture the distinction of WordPress.com as a host for websites:</p>\n<blockquote><p>WordPress.com isn&#8217;t like the others, it isn&#8217;t a silo, so banning him from that service will not necessarily have any affect on the presence of his site. He will be able to export his site, set up his own server, point the DNS entry at that server, and proceed on the open web and it will appear to outside viewers as if nothing happened. This will be the end of the discussion, unless the anti-speech advocates try to exert pressure on the open web. There they will find there is no CEO, no corporate headquarters, no shareholders afraid of losing value, none of the usual pressure points.</p></blockquote>\n<p>This particular situation regarding the Sandy Hook conspiracy site seems to have hit a nerve due to the fact that there are children involved. Despite WordPress.com&#8217;s quick privacy policy change in this instance, Automattic is still a rare outlier among publishing companies when it comes to support of free speech on the web. Media outlets and tech companies are increasingly clamoring for offensive content to be removed, instead of taking a principled stand against censorship.</p>\n<p>Today <a href=\"https://www.poynter.org/news/200-newspapers-will-write-pro-journalism-editorials-will-they-also-listen\" rel=\"noopener noreferrer\" target=\"_blank\">more than 200 newspapers</a>, including the New York Times, are coordinating to publish editorials calling out President Trump&#8217;s characterization of the press as the &#8220;enemy of the people.&#8221; Corporate-owned news media is ready to decry attacks on free speech, but do they really believe in it when it counts? That freedom isn&#8217;t predicated on whether the speech is true or unoffensive to readers.</p>\n<p>Calling out a free speech platform like WordPress.com, without any distinction for its vital role in enabling journalists across the globe, is a coercive attempt to exact a desired result. What WordPress.com has done is groundbreaking in democratizing publishing and enabling bloggers to break news on their own sites.</p>\n<p>The New York Times raking WordPress.com over the coals for its refusal to censor its users is an egregious double standard. A publication cannot call for free speech for itself while eating up the rights of everyone else they don&#8217;t agree with. Principles aren&#8217;t principles if they only serve you when they are convenient.</p>\n<p>Forcing the censorship of offensive speech may feel like swift justice in the short term, but it weakens the fabric of a free society. Let discerning readers make up their own minds when they come across sites disseminating conspiracy theories.  Although it may be an unpopular stance, the tragic nature of this particular offense cannot bypass the principles that underpin our basic freedoms.</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, 16 Aug 2018 16:58: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:\"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: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:72:\"WPTavern: WPWeekly Episode 327 – Truth, Misinformation, and Good Ideas\";s: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=83205&preview=true&preview_id=83205\";s: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:77:\"https://wptavern.com/wpweekly-episode-327-truth-misinformation-and-good-ideas\";s: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:2980:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I discuss what&#8217;s new in the world of WordPress. First, we talk about Syed Balkhi&#8217;s growth accelerator fund and learn that Jacoby pitched a similar idea to Balkhi at WordCamp Miami 2017.</p>\n<p>We discuss the new feedback surrounding Gutenberg thanks to the call out in WordPress 4.9.8. Near the end of the show, we have a thoughtful conversation around misinformation, truth, and the fine line of allowing freedom of speech on private platforms.</p>\n<p>I apologize for the audio quality in this episode. During the Live hangout, there were no issues detected. However, once the video was encoded by YouTube, audio issues were present, the video was choppy, and the length of the show was shortened.</p>\n<p>Unfortunately, I&#8217;ve been complacent with Google Hangouts&#8217; reliability and have not been recording my audio locally. Beginning next week, Jacoby and I will record our audio locally so if this issue happens again, we&#8217;ll be able to combine the audio tracks. Although there are parts of this episode that are difficult to listen too, I believe there is enough good audio in the show to warrant its publication.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/syed-balkhi-launches-a-wordpress-focused-growth-accelerator-fund\">Syed Balkhi Launches A WordPress-focused Growth Accelerator Fund</a><br />\n<a href=\"https://wptavern.com/gutenberg-plugin-garners-mixed-reactions-from-new-wave-of-testers\">Gutenberg Plugin Garners Mixed Reactions from New Wave of Testers</a><br />\n<a href=\"https://wptavern.com/mythic-a-wordpress-starter-theme-by-justin-tadlock-now-in-open-beta\">Mythic: A WordPress Starter Theme by Justin Tadlock Now in Open Beta</a><br />\n<a href=\"https://wptavern.com/advanced-custom-fields-to-add-gutenberg-compatibility-in-version-5-0-slated-for-september\">Advanced Custom Fields to Add Gutenberg Compatibility in Version 5.0, Slated for September</a><br />\n<a href=\"https://wptavern.com/ephox-creators-of-tinymce-rebrand-to-tiny-technologies-inc\">Ephox, Creators of TinyMCE, Rebrand to Tiny Technologies Inc.</a><br />\n<a href=\"https://www.nytimes.com/2018/08/13/business/media/sandy-hook-conspiracies-leonard-pozner.html\">This Company Keeps Lies About Sandy Hook on the Web</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, August 22nd 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 #327:</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, 15 Aug 2018 23:07: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: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:22;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: India and HeroPress\";s: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=2604\";s: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/india-and-heropress/#utm_source=rss&utm_medium=rss&utm_campaign=india-and-heropress\";s: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:3554:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2017/08/082317-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Nothing is better than a girl who writes code.\" /><p>It&#8217;s no secret that HeroPress was greatly helped in its early days by people from India. Jeet, <a href=\"https://heropress.com/essays/ill-keep-looking-for-a-cms-unless-i-find-wordpress/\">Saurabh</a>, <a href=\"https://heropress.com/essays/wordpress-my-passport-to-open-source/\">Aditya</a>, <a href=\"https://heropress.com/essays/growing-wordpress-india/\">Alexander</a>, and <a href=\"https://heropress.com/?s=india\">many others</a> gave deep and meaningful advice on how I, as a white American male, should approach the task I had set before me. This is one of the reasons it makes me so happy when I hear stories of how WordPress changes lives there, especially for women.</p>\n<p>This week&#8217;s HeroPress replay is from Juhi Patel, from Gujarat, in northwestern India. As I recall, hers was also the very first HeroPress essay to be multi-lingual, something I&#8217;ve always wanted.</p>\n<p>Juhi&#8217;s culture isn&#8217;t too keen on women doing Professional work, a problem not all that uncommon throughout the world. Not only did she have the courage to move against that belief system, WordPress gave her the tools to practically make it happen, and thereby be an example to other women around her. There are still good things happening in the world, and Juhi is helping to make them happen.</p>\n<p>Check out her essay here:</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/wordpress-good-indian-women/\">Is WordPress Good for Indian Women?</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: India and HeroPress\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=India%20and%20HeroPress&via=heropress&url=https%3A%2F%2Fheropress.com%2Findia-and-heropress%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: India and HeroPress\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Findia-and-heropress%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%2Findia-and-heropress%2F&title=India+and+HeroPress\" rel=\"nofollow\" target=\"_blank\" title=\"Share: India and HeroPress\"></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/india-and-heropress/&media=https://heropress.com/wp-content/uploads/2017/08/082317-150x150.jpg&description=India and HeroPress\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: India and HeroPress\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/india-and-heropress/\" title=\"India and HeroPress\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/india-and-heropress/\">India and HeroPress</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, 15 Aug 2018 11:00: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:\"\";}}}}}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:97:\"WPTavern: Yoast SEO 8.0 Introduces Gutenberg Sidebar Integration, Revamps Classic Editor Meta Box\";s: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=83162\";s: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:107:\"https://wptavern.com/yoast-seo-8-0-introduces-gutenberg-sidebar-integration-revamps-classic-editor-meta-box\";s: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:3396:\"<p><a href=\"https://yoast.com/yoast-seo-8-0-introducing-the-yoast-seo-gutenberg-sidebar-a-revamped-meta-box/\" rel=\"noopener noreferrer\" target=\"_blank\">Yoast SEO 8.0</a>, featuring the plugin&#8217;s first pass at integrating with the Gutenberg interface. This major update also revamps the classic editor&#8217;s meta box for those who do not have the Gutenberg plugin installed.</p>\n<p>In the past, the Yoast SEO meta box was displayed below the post editor. In the Gutenberg UI, the meta box has been redesigned to fit in the sidebar. Those testing Gutenberg will also temporarily find an additional meta box below the post, as the Yoast team has not yet added all optimizations to both yet. In the future, users will have the option to choose between the two.</p>\n<p>The updated design displays individual optimizations in collapsible panels with colored smiley face indicators for feedback at a glance. The snippet preview and social previews feature can still be found in the meta box below the post editor. They will be integrated more tightly into the Gutenberg UI in a future round of updates.</p>\n<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/08/gutenberg-sidebar-yoast.jpg?ssl=1\"><img /></a>image credit: <a href=\"https://yoast.com/yoast-seo-8-0-introducing-the-yoast-seo-gutenberg-sidebar-a-revamped-meta-box/\">Yoast SEO</a>\n<p>Yoast SEO 8.0 also brings some of the meta box UI improvements to the one displayed in the classic editor. It organizes all of the Yoast SEO tools into collapsible panels for a look that is cleaner than the tabs found in the previous UI.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/08/Screen-Shot-2018-08-14-at-1.04.17-PM.png?ssl=1\"><img /></a></p>\n<p>Version 8.0 is the first step towards Gutenberg integration. The Yoast SEO team is working on using modals to display previews for snippets and social posts from the sidebar so the interface isn&#8217;t split across two meta boxes. Users will eventually have the option to toggle either meta box display option into view, including those who are using the classic editor. The team is also working on allowing users to create blocks with the correct structured data automatically attached for things like books, recipes, products, and other specific content types.</p>\n<p>WordPress.org has a handful of popular SEO plugins and Yoast SEO is currently leading the pack when it comes to integration with the Gutenberg UI. In a recent support <a href=\"https://wordpress.org/support/topic/gutenberg-12/#post-10379255\" rel=\"noopener noreferrer\" target=\"_blank\">thread</a>, All in One SEO Pack creator Michael Torbert said his plugin is &#8220;compatible with Gutenberg and will be getting new features to work with it in time.&#8221; Torbert doesn&#8217;t have full <a href=\"https://github.com/semperfiwebdesign/all-in-one-seo-pack/issues/1122\" rel=\"noopener noreferrer\" target=\"_blank\">Gutenberg integration</a> assigned to a milestone on GitHub yet.</p>\n<p>The SEO Framework, another SEO plugin growing in popularity, appears to be in the same boat if <a href=\"https://github.com/sybrew/the-seo-framework/issues/235\" rel=\"noopener noreferrer\" target=\"_blank\">GitHub activity</a> is any indication. The plugin&#8217;s author, Sybre Waaijer, has discussed the possibility of inserting the meta box into the Gutenberg sidebar, similar to the Yoast implementation.</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, 15 Aug 2018 04:19:33 +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:24;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: Syed Balkhi Launches A WordPress-focused Growth Accelerator Fund\";s: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=83179\";s: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/syed-balkhi-launches-a-wordpress-focused-growth-accelerator-fund\";s: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:1716:\"<p>Syed Balkhi, founder of WPBeginner, has announced a <a href=\"https://www.wpbeginner.com/news/announcing-the-wpbeginner-growth-accelerator-fund/\">growth accelerator fund</a> aimed at helping companies focused on WordPress prosper. </p>\n\n<p>The fund will provide between $100K-500K to a small group of selected companies. In addition to the funding, selected companies will be able to take advantage of Awesome Motive&#8217;s media presence, network of business associates, and receive guidance.</p>\n\n<p>&#8220;The problem is that the WordPress market is not very well understood by investors,&#8221; Balkhi said. &#8220;And frankly, the majority of WordPress businesses are not large enough to meet their criteria.</p>\n\n<p>&#8220;But this doesn’t mean that WordPress businesses don’t have the potential. It’s quite the opposite – they have a lot of potential. There are tons of opportunities to grow in the WordPress ecosystem with the right playbook, and I want to help prove that.&#8221;</p>\n\n<p>Founders will be given a lot of advice although they won&#8217;t be required to act upon it. Backers of the growth fund will also maintain a hands-off approach, interfering as little as possible with day-to-day operations. </p>\n\n<p>Five companies will be hand-selected to receive funding. To be eligible for investments, WordPress-focused companies must be at least six months old. To apply, founders need to fill out the <a href=\"https://www.wpbeginner.com/news/announcing-the-wpbeginner-growth-accelerator-fund/#wpbfund\">following form</a>.</p>\n\n<p>The WPBeginner growth accelerator fund could be the jump start that gives a handful of companies the opportunity to take things to the next level. <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:\"Wed, 15 Aug 2018 00:15:57 +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: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:81:\"WPTavern: Sami Keijonen’s Foxland Themes and Plugins are Now Available for Free\";s: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=82882\";s: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://wptavern.com/sami-keijonens-foxland-themes-and-plugins-are-now-available-for-free\";s: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:3674:\"<p>WordPress theme designer and developer <a href=\"https://profiles.wordpress.org/samikeijonen\" rel=\"noopener noreferrer\" target=\"_blank\">Sami Keijonen</a> has made all of his theme and plugin products at Foxland <a href=\"https://foxland.fi/foxland-products-for-free/\" rel=\"noopener noreferrer\" target=\"_blank\">available for free</a>. Keijonen&#8217;s WordPress.org-hosted themes are active on more than 10,000 websites.</p>\n<p>During the past three years he began taking on more client work, which gave him less time for theme building and maintenance. Last month he accepted a front-end engineer position at 10up that is keeping him busy.</p>\n<p>Fans might remember Keijonen&#8217;s <a href=\"https://wptavern.com/the-mina-olen-free-wordpress-theme-experiment\" rel=\"noopener noreferrer\" target=\"_blank\">Mina Olen Free WordPress Theme Experiment</a> when he made the theme available for free on GitHub to see if potential customers would be inspired to purchase after being able to test drive the theme on their own sites. At that time he said he struggled to support his theme shop, because the business aspect of it wasn&#8217;t one of his strengths.</p>\n<p>It&#8217;s easy to get lost in all the competition in the WordPress theme industry, especially when major players have more money to drop on advertising and support staff. The days of building a beautiful theme and selling it without any kind of marketing are long gone. Prospective theme developers have to be ready to embrace the challenges of competing in a much wider market in 2018.</p>\n<p>&#8220;Foxland isn’t a gold mine,&#8221; Keijonen said in his announcement. &#8220;Foxland brings about 3,000 to 4,000 Euros per year, which is OK but my goal was 10,000 euros.&#8221;</p>\n<p>Customers appreciated Keijonen&#8217;s attention to detail, accessibility, and performance. Respected WordPress theme author <a href=\"https://tungdo.github.io/\" rel=\"noopener noreferrer\" target=\"_blank\">Tung Do</a> said Keijonen&#8217;s themes are &#8220;great examples of best practices.&#8221; Many of them also include support for popular plugins.</p>\n<p>For example, <a href=\"https://foxland.fi/downloads/checathlon/\" rel=\"noopener noreferrer\" target=\"_blank\">Checathlon</a>, one of his best works, is active on <a href=\"https://foxland.fi/\" target=\"_blank\" rel=\"noopener noreferrer\">foxland.fi</a>. It offers built-in styles for Easy Digital Downloads (including product and account pages), Custom Content Portfolio, and Jetpack (testimonials, portfolio, and email subscription widget).</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/04/checathlon.png?ssl=1\"><img /></a></p>\n<p>The <a href=\"https://foxland.fi/downloads/category/themes/\" rel=\"noopener noreferrer\" target=\"_blank\">Foxland collection</a> includes several beautiful minimalist free themes with previously-pro versions that enable additional Customizer settings, page templates, and widgets. All of Keijonen&#8217;s custom <a href=\"https://foxland.fi/downloads/category/plugins/\" rel=\"noopener noreferrer\" target=\"_blank\">plugins</a> (created to accompany the themes) are also available for free.</p>\n<p>The Foxland shop has cancelled all the recurring subscriptions but will continue to support existing purchases up to a year from the purchase date. Keijonen said he will maintain most of the old themes and plugins with small updates coming in the future but plans to deprecate some as well.</p>\n<p>The landscape of WordPress theming is about to change quite a bit when Gutenberg is merged into core. Keijonen said he plans to embrace these changes by creating new free themes with Gutenberg support, built on more modern code.</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, 13 Aug 2018 23:46: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:\"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: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:82:\"WPTavern: New BackYourStack Tool Drives Financial Support for Open Source Projects\";s: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=83100\";s: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:93:\"https://wptavern.com/new-backyourstack-tool-drives-financial-support-for-open-source-projects\";s: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:2606:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/08/Screen-Shot-2018-08-11-at-5.17.24-PM-e1534026554562.png?ssl=1\"><img /></a></p>\n<p><a href=\"https://opencollective.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Open Collective</a> launched in 2017 as a new organization that helps groups raise funds and manage them transparently. The service is now widely used by many open source projects. Webpack, one of the first major Open Collective success stories, was able to fund its first full-time developer through the service and is now <a href=\"https://opencollective.com/webpack\" rel=\"noopener noreferrer\" target=\"_blank\">operating on an estimated annual budget of $331,471</a>. The <a href=\"https://wptavern.com/how-the-san-francisco-wordpress-meetup-is-using-open-collective-to-fund-activities\" rel=\"noopener noreferrer\" target=\"_blank\">San Francisco WordPress meetup</a> (WPSFO) is one example of a WordPress group that successfully uses the service to <a href=\"https://opencollective.com/wordpress-sf\" rel=\"noopener noreferrer\" target=\"_blank\">receive sponsorships</a> that help cover expenses for events.</p>\n<p>Open Collective has launched a new tool called <a href=\"https://backyourstack.com/\" rel=\"noopener noreferrer\" target=\"_blank\">BackYourStack</a> that helps people and organizations become aware of projects they use that need funding. The tool scans GitHub accounts (for individuals and organizations) and identifies projects that have already set up accounts on Open Collective. The tool shows all detected dependencies and the repositories where they are used.</p>\n<p>Here are a few sample results you get from scanning the WordPress GitHub account:</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/08/Screen-Shot-2018-08-13-at-11.36.42-AM.png?ssl=1\"><img /></a></p>\n<p>The results display where project is used, the number of full-time maintainers, progress to reach the next goal, and a few organizations that are already backing the project. Open Collective also allows backers to support multiple dependences in bulk via a lump sum as an alternative to backing each project individually.</p>\n<p>Not every open source project listed on Open Collective will have the need to fund salaries and events, but even a small yearly budget can reduce out-of-pocket costs for open source maintainers for things like hosting and promotional costs. Many widely used open source projects go without funding because users are not aware of their needs. BackYourStack helps people and organizations make a direct connection to the projects they depend on.</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, 13 Aug 2018 17:38:43 +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: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:34:\"WPTavern: Gutenberg 3.5.0 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=83084\";s: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:45:\"https://wptavern.com/gutenberg-3-5-0-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:1260:\"<p><a href=\"https://wordpress.org/plugins/gutenberg/\">Gutenberg</a> 3.5.0 <a href=\"https://make.wordpress.org/core/2018/08/09/whats-new-in-gutenberg-9th-august/\">is available</a> for download and polishes existing features. This release adds an edit button to embed blocks that allows users to edit the source URL. </p>\n\n<img />Edit URL Button on Embed Blocks\n\n<p>The contrast has been increased for input fields and check boxes have visually more distinct states as the following video shows. </p>\n\n\n\nMore Distinct States for Check boxes\n\n<p>One notable change is the <a href=\"https://github.com/WordPress/gutenberg/pull/8640\">addition of a warning</a> that displays if Cloudflare blocks REST API requests. This issue <a href=\"https://github.com/WordPress/gutenberg/issues/2704\">was reported</a> last September and it turns out that the PUT request is sometimes blocked by Cloudflare.</p>\n\n<p>Gary Pendergast <a href=\"https://github.com/WordPress/gutenberg/issues/2704#issuecomment-410563259\">reached out</a> to Cloudflare and the company deployed a fix earlier this week. </p>\n\n<p>To see a full list of changes in this release, check out <a href=\"https://make.wordpress.org/core/2018/08/09/whats-new-in-gutenberg-9th-august/\">the changelog</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:\"Fri, 10 Aug 2018 21:16: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:\"\";}}}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: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:\"WPTavern: Ephox, Creators of TinyMCE, Rebrand to Tiny Technologies Inc.\";s: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=83078\";s: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:79:\"https://wptavern.com/ephox-creators-of-tinymce-rebrand-to-tiny-technologies-inc\";s: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:1948:\"<p>Ephox, the creators of the <a href=\"https://www.tiny.cloud/features/\">TinyMCE editor</a> library that&#8217;s been used by WordPress for more than 10 years, has <a href=\"https://go.tiny.cloud/blog/a-tiny-name-change/\">changed its company name</a> to Tiny Technologies Incorporated. </p>\n\n<p>The new name provides an at-a-glance view of what the company does and establishes a tighter relationship with its flagship product. </p>\n\n<blockquote class=\"wp-block-quote\"><p>To make it easier for you to understand who we are and what we are working on, we have decided to put all of our efforts behind the Tiny brand. Renaming our company to Tiny Technologies Inc. demonstrates the efforts we are making to have TinyMCE the best choice for online rich text editing.</p><cite>Andrew Roberts, CEO and Co-founder of Tiny<br /></cite></blockquote>\n\n<p>In addition to the name change, the company has migrated its web presence to a new domain, <a href=\"https://www.tiny.cloud/\">tiny.cloud</a>. The Cloud top-level domain is managed by Aruba PEC SpA, a wholly owned subsidiary of <a href=\"https://www.aruba.it/en/home.aspx\">Aruba S.p.A.</a>, one of the largest webhosting providers in Europe. </p>\n\n<p>According to Andrew Roberts, CEO and Co-founder of Tiny, existing customers and vendors of Ephox Corporation don&#8217;t need to do anything different since the company is registered to do business under both names. </p>\n\n<p>Roberts also shared insight into the work being done on <a href=\"https://textbox.io/\">Textbox.io</a>, the company&#8217;s mobile-first text editor. &#8220;We continue to support and release updates to our mobile-first online rich text editor, Textbox.io,&#8221; he said. &#8220;By the end of 2019, we do see both TinyMCE and Textbox.io coming together but for now, they are independent projects.&#8221;</p>\n\n<p>TinyMCE is an <a href=\"https://www.tiny.cloud/download/\">open source project</a> that is licensed under LGPL 2.1. </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, 09 Aug 2018 23:07: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: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: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:89:\"WPTavern: Yoast SEO Team is Testing Gutenberg Integration Coming in Version 8.0 Next Week\";s: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=83059\";s: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:100:\"https://wptavern.com/yoast-seo-team-is-testing-gutenberg-integration-coming-in-version-8-0-next-week\";s: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:5899:\"<p>Joost de Valk tweeted a sneak peek of the Gutenberg integration the Yoast SEO team is currently testing. The <a href=\"https://wordpress.org/plugins/wordpress-seo/\" rel=\"noopener noreferrer\" target=\"_blank\">plugin</a> has more than 5 million active installations and is one that packs a lot into its wide meta box. Users have been curious about what compatibility with the new editor will look like for Yoast SEO. de Valk tweeted a preview of the plugin working inside the Gutenberg UI:</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Officially still on holiday&#8230; But, testing our <a href=\"https://twitter.com/yoast?ref_src=twsrc%5Etfw\">@yoast</a> SEO Gutenberg integration as the first real integration piece is due next week, this is making me happy (and extremely proud of our team):<a href=\"https://twitter.com/hashtag/gutenberg?src=hash&ref_src=twsrc%5Etfw\">#gutenberg</a> <a href=\"https://twitter.com/hashtag/wordpress?src=hash&ref_src=twsrc%5Etfw\">#wordpress</a> <a href=\"https://twitter.com/hashtag/yoast?src=hash&ref_src=twsrc%5Etfw\">#yoast</a> <a href=\"https://t.co/UHFAdH0wAt\">pic.twitter.com/UHFAdH0wAt</a></p>\n<p>&mdash; Joost de Valk (@jdevalk) <a href=\"https://twitter.com/jdevalk/status/1027284212511109131?ref_src=twsrc%5Etfw\">August 8, 2018</a></p></blockquote>\n<p></p>\n<p>For the past several months the team has been making progress on the plugin&#8217;s <a href=\"https://github.com/Yoast/wordpress-seo/issues/9189\" rel=\"noopener noreferrer\" target=\"_blank\">Gutenberg integration roadmap</a>. Yoast SEO 8.0 is coming next week with the first round of compatibility in place.</p>\n<p>&#8220;8.0 is coming on Tuesday with most of it, some bits are relying on the integration of an annotations API in Gutenberg, which is not entirely under our control,&#8221; de Valk said. &#8220;We need that to do markings like we do in the classic editor to highlight where your errors are. Feature complete is quite a while off &#8211; we want to do a LOT. Gutenberg is opening a whole new playing field for us in terms of more in context, actionable feedback.&#8221;</p>\n<p>Future versions of Yoast SEO will offer more features inline, instead of housing them in a single meta box.</p>\n<p>&#8220;We started by breaking down all our features, and seeing where we could integrate them into Gutenberg,&#8221; de Valk said in a <a href=\"https://yoast.com/gutenberg-integration/\" rel=\"noopener noreferrer\" target=\"_blank\">post</a> outlining Yoast SEO&#8217;s planned approach back in October 2017. &#8220;We don’t think holding on to a single, massive box below the editor will best serve our customers. We’d much rather integrate right where the action happens, and Gutenberg offers us that chance.&#8221;</p>\n<p>For example, readability analysis can be shown on a per-block basis to provide more fine-grained feedback:</p>\n<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/08/readability-analysis.jpg?ssl=1\"><img /></a>image credit: <a href=\"https://yoast.com/gutenberg-integration/\">Yoast SEO</a>\n<p>&#8220;You’ll get actionable feedback in context,&#8221; de Valk said. &#8220;You don’t have to scroll down to a meta box to see the advice and scroll up again to the place where you should implement it. If we give feedback per block, you will get a better understanding of all the factors that influence SEO.&#8221;</p>\n<p>The Yoast SEO team has been enthusiastic about what the Gutenberg era will bring to WordPress. In a recent <a href=\"https://twitter.com/jdevalk/status/1026084237508788225\" rel=\"noopener noreferrer\" target=\"_blank\">Twitter thread</a>, de Valk summarized his thoughts on the project and described the direction the Yoast SEO plugin is headed:</p>\n<blockquote><p>[I&#8217;ve] been thinking about Gutenberg more lately, as discussion about it is growing now that it&#8217;s near to WordPress core inclusion. What is most important in what we&#8217;re doing is something I think most people don&#8217;t see yet: The new &#8216;blocks&#8217; that Gutenberg introduces allow us to, much more easily, make content items instead of web pages the smallest particle of the web.</p>\n<p>Questions and answers, how to&#8217;s, recipes, suddenly all of them can much more easily have metadata, and be reused. This is particularly important to SEOs: the search engines, driven by voice search requirements, are searching for answers, more than for &#8216;just&#8217; URLs to send traffic to, and blocks allow us to give them those answers, in a format both they and users can understand. While doing this, it allows us to keep the separation of content and design, something we definitely need to think more about.</p></blockquote>\n<p>With Gutenberg compatibility on its way from widely-used plugins like ACF and Yoast SEO, users can have confidence more plugins they depend on will follow suit. These major players are the first cracks in the ice across the ecosystem that will soon make Gutenberg-support the standard for any product that wants to compete.</p>\n<p>de Valk encouraged users to look at the advent of Gutenberg as a door to new opportunities during this transition time.</p>\n<p>&#8220;Gutenberg is not &#8216;done,\'&#8221; de Valk said. &#8220;I think it&#8217;s ready to ship, but I also think it opens up a world of new opportunities and discussions. It&#8217;s not all &#8216;right&#8217; yet either, so there will have to be changes as more people use it and get used to it. I do realize this is a drastic change in some ways. But it&#8217;s also not half as bad as people think it is. I have seen people use it for the first time, most people get used to it very quickly. Last but not least: you don&#8217;t have to switch now. The classic editor plugin exists for a reason. You can put off your switch for a year, or even two. But eventually I think everyone will see the power of the new editor and will switch.&#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:\"Thu, 09 Aug 2018 21:54:16 +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: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:100:\"WPTavern: Advanced Custom Fields to Add Gutenberg Compatibility in Version 5.0, Slated for September\";s: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=83016\";s: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:110:\"https://wptavern.com/advanced-custom-fields-to-add-gutenberg-compatibility-in-version-5-0-slated-for-september\";s: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:4880:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/08/Screen-Shot-2018-08-08-at-10.50.38-PM.png?ssl=1\"><img /></a></p>\n<p>The <a href=\"https://wordpress.org/plugins/advanced-custom-fields/\" rel=\"noopener noreferrer\" target=\"_blank\">Advanced Custom Fields</a> (ACF) team published an <a href=\"https://www.advancedcustomfields.com/blog/the-state-of-acf-in-a-gutenberg-world/\" rel=\"noopener noreferrer\" target=\"_blank\">announcement</a> today, assuring users that Gutenberg compatibility is in the works and will be available in version 5.0 of the free version in September 2018. The plugin, created by Elliot Condon, makes it easy for developers to add custom fields to WordPress edit screens, including posts, users, taxonomy terms, and media.</p>\n<p>ACF is widely used with more than a million active installations. Developers have been concerned about whether or not their custom fields would continue to work on their clients&#8217; websites after the new editor makes its debut in WordPress 5.0.</p>\n<p>Gutenberg treats legacy metaboxes as second class citizens in the interface, stuffed at the bottom of the new edit screen. Metaboxes should, however, continue to work as expected. The ACF announcement lets developers know what to expect for how their metaboxes will appear inside Gutenberg:</p>\n<blockquote><p>By default, our beloved metaboxes are pushed all the way to the bottom of the screen in an awkward attempt to retain compatibility. This placement feels very much like an afterthought from the Gutenberg developers and creates a disjointed editing experience for those of us (1+ million awesome ACF users) who extend the edit screens with extra fields.</p>\n<p>While this setup isn’t ideal, we will continue to work within the system to ensure that ACF is integrated into the Gutenberg UI to the fullest extent possible.</p></blockquote>\n<p>The free version of ACF will introduce Gutenberg compatibility in its version 5 release, which is slated for early September 2018. The compatibility update will only apply to version 5 and later, so the ACF team urges developers to running 4.x to upgrade to 5 as soon as it becomes available. Developers can also elect to upgrade early by turning on ACF&#8217;s <a href=\"https://www.advancedcustomfields.com/resources/upgrade-guide-version-5/\" rel=\"noopener noreferrer\" target=\"_blank\">Early Access</a> feature.</p>\n<p>The most surprising news is that ACF is introducing its own &#8220;ACF Blocks,&#8221; an <code>acf_register_block()</code> function that allows developers to register their own custom blocks without having to learn JavaScript.</p>\n<blockquote><p>One of the big selling points of Gutenberg is the ability for developers to create custom blocks. The challenge is that the process is very JavaScript-intensive and not so friendly to PHP developers. But never fear, because ACF Blocks is here to turn that narrative upside down!</p>\n<p>We have been hard at work building a PHP friendly game-changer for you to quickly create new block types using ACF fields to power PHP templates!</p></blockquote>\n<p>ACF Blocks may be an unexpected development for those using the plugin, as the ACF team&#8217;s recent tweets have frequently communicated their disappointment with Gutenberg.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Just spent the day working with <a href=\"https://twitter.com/hashtag/gutenberg?src=hash&ref_src=twsrc%5Etfw\">#gutenberg</a>&#8230; <img src=\"https://s.w.org/images/core/emoji/11/72x72/1f915.png\" alt=\"🤕\" class=\"wp-smiley\" /><img src=\"https://s.w.org/images/core/emoji/11/72x72/1f624.png\" alt=\"😤\" class=\"wp-smiley\" /><img src=\"https://s.w.org/images/core/emoji/11/72x72/1f626.png\" alt=\"😦\" class=\"wp-smiley\" /> Frustrated, annoyed and surprised at how buggy the editing experience is.</p>\n<p>&mdash; Advanced Custom Fields (@wp_acf) <a href=\"https://twitter.com/wp_acf/status/1026724444327178240?ref_src=twsrc%5Etfw\">August 7, 2018</a></p></blockquote>\n<p></p>\n<p>The availability of the ACF Blocks function is a strategic move that continues to make ACF indispensable for users who may not have made the time to improve their technical skills with regards to extending Gutenberg.</p>\n<p>&#8220;Using ACF to make custom blocks was something I thought could happen, but not necessarily would happen,&#8221; WordPress developer Roy Sivan <a href=\"https://twitter.com/royboy789/status/1027199624669327360\" rel=\"noopener noreferrer\" target=\"_blank\">said</a>. &#8220;They proved me wrong, and its a big deal.&#8221;</p>\n<p>The news should come as a relief for developers who have used ACF liberally on client sites and feel under the gun with Gutenberg&#8217;s proposed time frame for inclusion in core. The ACF team is working to make sure developers&#8217; customizations continue to work as seamlessly as possible when WordPress 5.0 is released.</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, 09 Aug 2018 04:57: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: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: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:67:\"WPTavern: WPWeekly Episode 326 – Long Live the Fields API Project\";s: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=83037&preview=true&preview_id=83037\";s: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/wpweekly-episode-326-long-live-the-fields-api-project\";s: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:1687:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I are joined by <a href=\"https://www.scottkclark.com/\">Scott Kingsley Clark</a>, lead developer of the <a href=\"http://pods.io/\">Pods framework</a>. Clark describes what it was like to lead the Fields API project, the difficulties of working hard on a project and not getting core buy-in, and why building the Fields API into core first would have made the transition to Gutenberg easier for users and developers.</p>\n<p>He looks back and describes what he possibly could have done differently and provides an update on Pods Framework&#8217;s compatibility with Gutenberg. To wrap up the show, Clark played us a song on his electric ukulele. To hear more tunes from Clark, check out <a href=\"https://soundcloud.com/soft-charisma\">his channel on SoundCloud</a>.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/wordpress-core-fields-api-project-is-seeking-new-leadership\">WordPress Core Fields API Project is Seeking New Leadership</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, August 15th 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 #326:</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, 09 Aug 2018 02:34:03 +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: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:78:\"WPTavern: Mythic: A WordPress Starter Theme by Justin Tadlock Now in Open Beta\";s: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=83029\";s: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:88:\"https://wptavern.com/mythic-a-wordpress-starter-theme-by-justin-tadlock-now-in-open-beta\";s: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:4765:\"<p><a href=\"http://justintadlock.com/\">Justin Tadlock</a>, founder of <a href=\"https://themehybrid.com/\">Theme Hybrid</a>, has <a href=\"https://themehybrid.com/weblog/mythic-your-new-starting-point-for-theme-design\">released Mythic</a>, a starter theme that provides modern tools to get theme developers started on the right foot. </p>\n\n<blockquote class=\"wp-block-quote  is-style-large\"><p>Theming in 2018 is much different than theming in 2008. Without the right tools, it can be overwhelming to simply get started building even the most basic theme.</p><cite>Justin Tadlock</cite></blockquote>\n\n<p>While starter themes are nothing new in the WordPress space, Mythic and <a href=\"https://wptavern.com/wp-rig-a-wordpress-starter-theme-and-build-process-in-one\">WP Rig</a> take things to the next level and relatively share the same goal of providing a modern foundation to develop on top of. </p>\n\n<p>Part of the inspiration to build Mythic began two years ago. In trying to revamp the <a href=\"https://wordpress.org/themes/news/\">News theme</a>, Tadlock became frustrated with how difficult it was to use old coding methods and dropped the project.<br />><br /><br /><br /><br /><br />&#8220;In a lot of ways, it was the catalyst that started me down this road toward Mythic,&#8221; Tadlock said. &#8220;I didn&#8217;t realize it at the time. But, that&#8217;s where some of my frustration began with modern theme building.&#8221;</p>\n\n<p>Mythic supports PHP 5.6+ although Tadlock is strongly pushing developers towards PHP 7+. &#8220;Anything earlier than 5.6 means for clunky code that’s just a headache to maintain,&#8221; he said. &#8220;WordPress, as a community, needs to be pushing people to update.&#8221;</p>\n\n<p>Support for SASS, LESS, CSS, and Stylus are built-in and developers can choose which language they prefer for builds. ES6+ was chosen for JavaScript and is commonly used for building Gutenberg blocks. </p>\n\n<p>Mythic comes with <a href=\"http://getbem.com/\">BEM</a> or Block-Element-Modifier. BEM is a methodology that enables developers to create reusable elements and sharing code in front-end environments. </p>\n\n<p>&#8220;BEM is a popular solution because it goes hand-in-hand with modern CSS pre-processors,&#8221; Tadlock said. &#8220;It also allows you to keep your styles flat and not get lost in <em>specificity hell</em>. This means smaller, faster stylesheets that are easier to override when you, a child theme author, or user need to do something custom.&#8221; The starter theme uses <a href=\"https://webpack.js.org/\">Webpack</a> in combination with <a href=\"https://github.com/JeffreyWay/laravel-mix\">Laravel Mix</a> to manage assets and modules.<br /></p>\n\n<p>Mythic has an <a href=\"https://themehybrid.com/weblog/working-with-the-view-class\">extended View class</a> that allows theme authors to use their preferred folder structure. Theme authors can also add custom data to theme templates. According to Tadlock, both features are not part of WordPress&#8217; native templating system. </p>\n\n<p>In addition to Mythic, Tadlock has continued to work on the <a href=\"https://themehybrid.com/hybrid-core\">Hybrid Core </a>framework. Hybrid Core is a required dependency that is added via Composer. </p>\n\n<p>Using Mythic with Hybrid Core exposes developers to features of the framework that they otherwise may not discover. &#8220;I rewrote nearly all of HC5 from scratch,&#8221; he said. &#8220;As a result, it’s leaner, more organized, and more cohesive.&#8221; The starter theme is also Gutenberg-ready.<br /></p>\n\n<h2>Tadlock Experiments with Sponsorship Pricing Model<br /></h2>\n\n<p>Mythic is in open beta and available for free via <a href=\"https://github.com/justintadlock/mythic\">GitHub</a>. The <a href=\"https://themehybrid.com/themes/mythic\">pricing model</a> is an honor system experiment. Tadlock is asking those who build projects for clients and generating a profit, to make a $99 sponsorship purchase. For commercially-sold themes, he is asking for $199. Both packages come with one year of support and access to the company&#8217;s Slack channel. <br /></p>\n\n<p>&#8220;I&#8217;m still taking feedback on the payment system,&#8221; Tadlock said. &#8220;It could change. There have been a few suggestions more of a lifetime/flat fee. I&#8217;d prefer to just get some generous sponsors and keep it all $free. We&#8217;ll see where that goes in this next month of the beta process.&#8221;</p>\n\n<p>Mythic&#8217;s beta ends on September 3rd in which he&#8217;ll release version 1.0. Until then, he is trying to get as much feedback as possible from developers. To file issues, submit feedback, and contribute, visit the <a href=\"https://github.com/justintadlock/mythic\">project&#8217;s GitHub page</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, 09 Aug 2018 00:40: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: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:61:\"WPTavern: Watch the Top 10 Sessions from WordCamp Europe 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:29:\"https://wptavern.com/?p=82962\";s: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://wptavern.com/watch-the-top-10-sessions-from-wordcamp-europe-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:3937:\"<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2018/07/WCEU-2018.jpg?ssl=1\"><img /></a>photo credit: <a href=\"https://www.flickr.com/photos/wceu/41176987410/\">Val Vesa</a>\n<p>The results of the <a href=\"https://2018.europe.wordcamp.org/2018/08/07/results-of-the-wceu-2018-attendee-survey/\" rel=\"noopener noreferrer\" target=\"_blank\">WCEU 2018 Attendee Survey</a> are in: 98% of the 566 respondents from 49 countries said they would recommend WCEU to a friend and 90% are very likely to attend the next event in Berlin. Of those who participated in the survey, 49% were attending WCEU for the first time and 37% of them were attending their first WordCamp. Overall, attendees reported overwhelmingly positive experiences, which is a big affirmation of the organizing team that continues to lift the bar higher for WordCamps around the world.</p>\n<p>If you missed out on the WordCamp, the good news is that you can catch all of the sessions on WordPress.tv. The top 10 sessions have been curated by attendees who responded to the survey. These sessions cover some of the most important topics for WordPress professionals in 2018 and beyond:</p>\n<ol>\n<li><a href=\"https://wordpress.tv/2018/07/04/matt-mullenweg-a-summertime-update-keynote-and-qa/\" rel=\"noopener noreferrer\" target=\"_blank\">Keynote and Q&#038;A</a> – Matt Mullenweg</li>\n<li><a href=\"https://wordpress.tv/2018/07/11/joost-de-valk-technical-seo-to-grow-your-wordpress-business/\" rel=\"noopener noreferrer\" target=\"_blank\">Technical SEO to grow your WordPress business</a> – Joost de Valk</li>\n<li><a href=\"https://wordpress.tv/2018/07/06/morten-rand-hendriksen-the-ethics-of-web-design/\" rel=\"noopener noreferrer\" target=\"_blank\">The Ethics of Web Design</a> – Morten Rand-Hendriksen</li>\n<li><a href=\"https://wordpress.tv/2018/07/09/matias-ventura-beyond-gutenberg/\" rel=\"noopener noreferrer\" target=\"_blank\">Beyond Gutenberg</a> – Matías Ventura</li>\n<li><a href=\"https://wordpress.tv/2018/07/08/alberto-medina-thierry-muller-progressive-wordpress-themes/\" rel=\"noopener noreferrer\" target=\"_blank\">Progressive WordPress Themes</a> – Alberto Medina, Thierry Muller</li>\n<li><a href=\"https://wordpress.tv/2018/07/08/noel-tock-wordpress-in-2019/\" rel=\"noopener noreferrer\" target=\"_blank\">WordPress in 2019</a> – Noel Tock</li>\n<li><a href=\"https://wordpress.tv/2018/07/05/maja-benke-accessible-design-3/\" rel=\"noopener noreferrer\" target=\"_blank\">Accessible Design</a> – Maja Benke</li>\n<li><a href=\"https://wordpress.tv/2018/07/09/adam-silverstein-javascript-apis-in-wordpress/\" rel=\"noopener noreferrer\" target=\"_blank\">JavaScript APIs in WordPress</a> – Adam Silverstein</li>\n<li><a href=\"https://wordpress.tv/2018/07/06/john-maeda-wordpress-and-inclusive-design-2/\" rel=\"noopener noreferrer\" target=\"_blank\">WordPress and Inclusive Design</a> – John Maeda</li>\n<li><a href=\"https://wordpress.tv/2018/07/08/tammie-lister-anatomy-of-a-block-gutenberg-design-patterns/\" rel=\"noopener noreferrer\" target=\"_blank\">Anatomy of a block: Gutenberg design patterns</a> – Tammie Lister</li>\n</ol>\n<p>Attendees were also big fans of the workshops introduced at this event. 78% of respondents said they would like to see them again next year. A couple of the workshop recordings have yet to make it to WordPress.tv but may be available at a later time. The three most popular workshops attendees identified were all related to Gutenberg:</p>\n<ul>\n<li>(Gutenberg) Block Development with React – Zac Gordon, Julien Melissas</li>\n<li><a href=\"https://wordpress.tv/2018/08/07/lara-schenck-lets-build-a-gutenberg-block/\" rel=\"noopener noreferrer\" target=\"_blank\">Let’s Build a Gutenberg Block</a> – Lara Schenck</li>\n<li>Roundtable with the Gutenberg team – The Gutenberg Team</li>\n</ul>\n<p>WordCamp Europe 2019 organizers are working on providing a more efficient registration process for workshops, as well as a greater capacity for attendees.</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, 08 Aug 2018 18:33: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: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: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:78:\"WPTavern: First Look at Live Demo of the Gutenberg Content Editor for Drupal 8\";s: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=82899\";s: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://wptavern.com/first-look-at-live-demo-of-the-gutenberg-content-editor-for-drupal-8\";s: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:9601:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2018/08/drupal-gutenberg-project-e1533679727741.png?ssl=1\"><img /></a></p>\n<p><a href=\"https://www.drupaleurope.org/\" rel=\"noopener noreferrer\" target=\"_blank\">Drupal Europe</a> has just announced its <a href=\"https://www.drupaleurope.org/program/sessions\" rel=\"noopener noreferrer\" target=\"_blank\">program</a> for the upcoming event in Darmstadt, Germany, September 10-14. The conference will host more than 1,600 Drupal professionals and enthusiasts for 162 hours of sessions and 9 in-depth workshops.</p>\n<p>Automattic is sponsoring the <a href=\"https://www.drupaleurope.org/program/open-web-lounge\" rel=\"noopener noreferrer\" target=\"_blank\">Open Web Lounge</a> networking space and Matt Mullenweg will be joining Dries Buytaert and Barb Palser on a panel discussing <a href=\"https://www.drupaleurope.org/session/future-open-web-and-open-source\" rel=\"noopener noreferrer\" target=\"_blank\">the future of the open web and open source</a>.</p>\n<p>One interesting WordPress-related session on the program is titled <a href=\"https://www.drupaleurope.org/session/introducing-gutenberg-content-editor-drupal-8\" rel=\"noopener noreferrer\" target=\"_blank\">Introducing the Gutenberg content editor for Drupal 8</a>. This new module ports WordPress&#8217; Gutenberg editor over to Drupal. It was created by Per André Rønsen and his team <a href=\"https://www.frontkom.no/\" rel=\"noopener noreferrer\" target=\"_blank\">Frontkom</a>, a digital services agency based in Norway.</p>\n<p>The <a href=\"https://drupalgutenberg.org/\" rel=\"noopener noreferrer\" target=\"_blank\">Drupal Gutenberg</a> project aims to provide a new publishing experience based on WordPress&#8217; Gutenberg editor. The <a href=\"https://drupalgutenberg.org/demo\" rel=\"noopener noreferrer\" target=\"_blank\">live demo</a> on the site currently provides a frontend interactive implementation of Gutenberg inside Drupal, similar to WordPress&#8217; &#8220;Frontenberg&#8221; demo on <a href=\"https://wordpress.org/gutenberg/\" rel=\"noopener noreferrer\" target=\"_blank\">wordpress.org/gutenberg</a>. The latest implementation of the module will appear there but Rønsen said it is currently being revamped, as lots of things have happened with Gutenberg in the past few weeks.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2018/08/drupal-gutenberg.png?ssl=1\"><img /></a></p>\n<h3>How the Drupal Gutenberg Project was Born</h3>\n<p>Rønsen told us he first saw Gutenberg in 2017 and was inspired to use it for one of Frontkom&#8217;s media clients.</p>\n<p>&#8220;The thought of forking it came mid-2017, as we explored using Gutenberg as a lib for making a front page builder sponsored by the Google Digital News Initiative,&#8221; Rønsen said. &#8220;We ended up using it, and the Drupal module is a natural spin off.&#8221;</p>\n<p>Frontkom tailored the Gutenberg-based page builder for the media industry. It adds extra functionality to Gutenberg that allows users to position and tweak articles for the front page of an online newspaper. Rønsen said the project went well and his team plans to open source it but it&#8217;s too early to share anything right now.</p>\n<p>Following this successful experience using Gutenberg for a client, Frontkom began work on the Drupal Gutenberg project in early January 2018.</p>\n<p>&#8220;The main part of the work was to make Gutenberg more CMS agnostic,&#8221; Rønsen said. &#8220;First we forked it and maintained a fork. Later we started using Gutenberg as a dependency, testing a more maintainable approach.&#8221;</p>\n<p>Rønsen opened a ticket on GitHub, requesting that the Gutenberg team consider <a href=\"https://github.com/WordPress/gutenberg/issues/2780\" rel=\"noopener noreferrer\" target=\"_blank\">structuring the project to be more CMS-agnostic</a>. The ticket was closed fairly soon with the <a href=\"https://github.com/WordPress/gutenberg/issues/2780#issuecomment-342569414\" rel=\"noopener noreferrer\" target=\"_blank\">explanation</a> that it &#8220;doesn&#8217;t relate directly to the work going on with the project and its goals.&#8221;</p>\n<p>&#8220;We have very little, if any, upstream commits so far, as the WP core interest has been to just cater to WP needs so far,&#8221; Rønsen said. &#8220;But that just changed.&#8221;</p>\n<p>Gutenberg is moving towards making it easier to use outside of WordPress. The team is working on <a href=\"https://github.com/WordPress/gutenberg/issues/3955\" rel=\"noopener noreferrer\" target=\"_blank\">publishing all the React modules as npm packages</a>. Rønsen said he anticipates that decreasing the number of globals needed to make Gutenberg work will be a huge help for other CMSs.</p>\n<p>So far the Drupal Gutenberg project has not been shared widely but Rønsen said his team has seen a lot of interest from the Drupal tech community.</p>\n<p>&#8220;We have a blog post coming in English with more detail; we kind of saved it for after holidays,&#8221; Rønsen said. &#8220;But then it blew up, and devs keep contacting us wanting to help out.&#8221;</p>\n<p>Frontkom has been involved in the Drupal community for more than 10 years and WordPress for the past three years. Rønsen and his team believe that Gutenberg fills a gap in the Drupal space.</p>\n<p>&#8220;Drupal doesn&#8217;t have all those fancy WordPress page builders,&#8221; he said. &#8220;So that is really more interesting than just a new post edit UI – we want a unified way to build complex layouts.&#8221;</p>\n<p>Drupal already has an initiative for revamping its admin UI using React, and Rønsen said he thinks Gutenberg might contribute to how this can happen in Drupal core. In an ideal world, many open source projects could greatly benefit from a CMS-agnostic Gutenberg, with all of them contributing together towards its improvement.</p>\n<p>&#8220;To us as a company, it is extremely interesting to build out front-ends that can easily be moved between CMSs,&#8221; Rønsen said. &#8220;For open source CMSs in general, I think there will be a lot to learn from the implementation process. For example, D8 has the concept of &#8216;everything is a block.&#8217; This has made it easy for us to make Drupal core blocks available in Gutenberg – we just need to do some magic to expose block settings.&#8221;</p>\n<p>The Frontkom team are not only enthusiastic fans of Gutenberg&#8217;s interface, but also appreciate the way the project is run. Rønsen hasn&#8217;t been following the <a href=\"https://wptavern.com/gutenberg-plugin-garners-mixed-reactions-from-new-wave-of-testers\" rel=\"noopener noreferrer\" target=\"_blank\">community reaction to the latest round of Gutenberg testing</a> but said he thinks WordPress users will love it long term, since &#8220;most of the page builders out there have issues.&#8221;</p>\n<p>&#8220;Drupal can learn a lot from WordPress, the way they actually built the Gutenberg project – a transparent design process, lots of collaboration, and still highly efficient,&#8221; Rønsen said. &#8220;So, WordPress is definitely ahead of Drupal with regards to their admin UI/JS work. Since there is already a lot of interest in the Drupal community to do something similar, it is very refreshing to see someone go through it and succeed (hopefully).&#8221;</p>\n<p><a href=\"https://twitter.com/stevector\" rel=\"noopener noreferrer\" target=\"_blank\">Steve Persch</a>, lead developer advocate at Pantheon, spoke at DrupalCon in Nashville 2018 about <a href=\"https://events.drupal.org/nashville2018/sessions/whats-possible-wordpress-50\" rel=\"noopener noreferrer\" target=\"_blank\">what&#8217;s possible with WordPress 5.0</a> and also gave a session at Twin Cities Drupal Camp titled &#8220;<a href=\"https://2018.tcdrupal.org/session/everything-block-how-wordpress-rewrote-wysiwyg\" rel=\"noopener noreferrer\" target=\"_blank\">Everything is a Block: How WordPress Rewrote the WYSIWYG</a>.&#8221; In response to buzz on Twitter about the Drupal Gutenberg session, Persch <a href=\"https://twitter.com/stevector/status/1026461967630983169\" rel=\"noopener noreferrer\" target=\"_blank\">said</a> Drupal needs an editorial UX improvement to stay competitive, but not necessarily by adopting Gutenberg.</p>\n<p>&#8220;We have in-progress initiatives toward that end,&#8221; Persch said. &#8220;Gutenberg itself could turn into a distraction from that work. In both [presentations] I also mentioned that Paragraphs or Layout Builder could be better data model starting points for Gutenberg-like functionality. Delivering exactly the same thing as WordPress would be self-defeating. Structured content is the heart of Drupal. I see Gutenberg (or something like it) as a better UI for the corner of the data model (the Paragraphs part) that Drupal sites have had for years.&#8221;</p>\n<p>It will be interesting to see how different open source communities approach Gutenberg and how more diverse feedback from outside of WordPress could impact the project.</p>\n<p>The <a href=\"https://www.drupal.org/sandbox/marcofernandes/2981601\" rel=\"noopener noreferrer\" target=\"_blank\">Drupal Gutenberg module</a> can be downloaded from the project page. It&#8217;s currently marked as an experimental module and is recommended for developer use only. The <a href=\"https://drupalgutenberg.org/demo\" rel=\"noopener noreferrer\" target=\"_blank\">live demo</a> for the project will soon be revamped to reflect the latest updates with Gutenberg. You can also <a href=\"https://github.com/front/drupal-gutenberg\" rel=\"noopener noreferrer\" target=\"_blank\">follow the project&#8217;s development on GitHub</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, 07 Aug 2018 22:28: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: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:35;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:75:\"WPTavern: Gutenberg Plugin Garners Mixed Reactions from New Wave of Testers\";s: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=82891\";s: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://wptavern.com/gutenberg-plugin-garners-mixed-reactions-from-new-wave-of-testers\";s: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:15811:\"<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/10/ship-bottle.jpg?ssl=1\"><img /></a>photo credit: KaylaKandzorra <a href=\"http://www.flickr.com/photos/48077358@N02/4952091078\">i miss you grampa.</a> &#8211; <a href=\"https://creativecommons.org/licenses/by/2.0/\">(license)</a>\n<p><a href=\"https://wptavern.com/wordpress-4-9-8-released\" rel=\"noopener noreferrer\" target=\"_blank\">WordPress 4.9.8</a> was released as an automatic update last week, featuring the &#8220;Try Gutenberg&#8221; callout. The goal of the prompt is to get more users testing the new editor and to raise awareness. Within the first 72 hours of the prompt going into user dashboards, sites with Gutenberg installed have shot up to more than 80,000, a 300% increase. The plugin has been downloaded more than 147,000 times in the past week.</p>\n<p>Gutenberg feedback is pouring in from a wave of new testers, most of whom are finding out about the new editor for the first time. Reactions have varied widely across multiple social networks. The announcement on <a href=\"https://www.facebook.com/WordPress/posts/10156301634992911\" rel=\"noopener noreferrer\" target=\"_blank\">WordPress&#8217; official Facebook account</a> attracted many drive-by style comments that included negative reactions, confusion, and questions, with a few positive comments peppered in between.</p>\n<blockquote><p>Blocks aren’t doing it for me. Will classic continue to be available permanently? If I want a block visual editor I promise I will install one voluntarily.</p></blockquote>\n<blockquote><p>I’m hoping gutenberg will be totally optional.</p></blockquote>\n<blockquote><p>I see only few users who are exited from Gutenberg. The rest is for leaving as it is. Why the guys from WP still want to implement it in the core? Make it a plugin. Why not a plugin whyyyyyy?</p></blockquote>\n<p>Twitter users trying Gutenberg for the first time were more enthusiastic about the potential of the new editor.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Absolutely love the new Medium-like Gutenberg WordPress editor. <img src=\"https://s.w.org/images/core/emoji/11/72x72/1f60d.png\" alt=\"😍\" class=\"wp-smiley\" /><img src=\"https://s.w.org/images/core/emoji/11/72x72/1f60d.png\" alt=\"😍\" class=\"wp-smiley\" /></p>\n<p>&mdash; Content Marketing Consultant (@Ebun_Oluwole) <a href=\"https://twitter.com/Ebun_Oluwole/status/1025827102401200128?ref_src=twsrc%5Etfw\">August 4, 2018</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"es\" dir=\"ltr\">me encantó Gutenberg, grande <a href=\"https://twitter.com/WordPress?ref_src=twsrc%5Etfw\">@WordPress</a> !!</p>\n<p>&mdash; Ale̶x̶ Zamorano (@alex_zamorano) <a href=\"https://twitter.com/alex_zamorano/status/1025752512593358848?ref_src=twsrc%5Etfw\">August 4, 2018</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Hey <a href=\"https://twitter.com/WordPress?ref_src=twsrc%5Etfw\">@WordPress</a> Gutenberg is dope I approve <img src=\"https://s.w.org/images/core/emoji/11/72x72/1f44d-1f3fe.png\" alt=\"👍🏾\" class=\"wp-smiley\" /></p>\n<p>&mdash; Bodega Hive <img src=\"https://s.w.org/images/core/emoji/11/72x72/1f3a8.png\" alt=\"🎨\" class=\"wp-smiley\" /> (@breezeSZN) <a href=\"https://twitter.com/breezeSZN/status/1025538848439394304?ref_src=twsrc%5Etfw\">August 4, 2018</a></p></blockquote>\n<p></p>\n<p>While some testers are quietly <a href=\"https://github.com/WordPress/gutenberg/issues\" rel=\"noopener noreferrer\" target=\"_blank\">reporting issues on GitHub</a>, others have written long missives in the plugin&#8217;s reviews, begging WordPress not to force the new editor on users. Gutenberg reviews are currently at a 2.4-star average, slipping from the 2.7-star average it held prior to the 4.9.8 release. Those who have written reviews tend to have reactions at both ends of the spectrum.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/08/Screen-Shot-2018-08-06-at-3.26.57-PM.png?ssl=1\"><img /></a></p>\n<p>At this point in the testing phase, the reviews in the official directory paint a grim picture of WordPress dragging its users kicking and screaming into the Gutenberg era. However, there are many reasons why a tester might be motivated to write a negative review. Some may have ignored the advice not to use it in production, some may be testing it with incompatible plugins, some may not want any changes to their established workflow, and some may simply not like the interface.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/08/Screen-Shot-2018-08-05-at-10.24.03-PM.png?ssl=1\"><img /></a></p>\n<p>While it may seem that the plugin has been widely panned by new testers, those who are the most critical tend to be more motivated to write a review. Those who are pleasantly surprised at something that works for them don&#8217;t tend to comment publicly. Reviews cannot possibly tell the whole tale, but they are important to monitor for feedback that could help Gutenberg succeed.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Month 14 of Gutenberg on <a href=\"https://t.co/zWh3po88LS\">https://t.co/zWh3po88LS</a> and I will keep the tradition of posting a summary of the reviews. Sadly neither time or quantity of reviews is not helping the score. Are the review biased? Is this something users like but admins hate? <a href=\"https://t.co/OMvIdUgfP4\">pic.twitter.com/OMvIdUgfP4</a></p>\n<p>&mdash; Andrew Roberts (@andrew_roberts) <a href=\"https://twitter.com/andrew_roberts/status/1025452116024807424?ref_src=twsrc%5Etfw\">August 3, 2018</a></p></blockquote>\n<p></p>\n<h2>&#8220;Try Gutenberg&#8221; Callout Succeeds at Bringing More Testers and Feedback</h2>\n<p>WordPress 4.9.8&#8217;s &#8220;Gutenprompt&#8221; is doing exactly what it was intended to do &#8211; bring out more testers. The invitation has already succeeded at pulling out some quality feedback if you can sort through all the casual, angry one-liners.</p>\n<p>Steven Peters opened a lengthy <a href=\"https://wordpress.org/support/topic/in-one-word-no-please-read-full-review/\" rel=\"noopener noreferrer\" target=\"_blank\">review</a> with the following observations about the more cumbersome and unintuitive aspects of Gutenberg&#8217;s interface:</p>\n<blockquote><p>The interface is not cohesive in its design. For example, To place a block of a paragraph, a heading, a subheading, a bullet list and every other block, the user must click the + sign every single time, making it that much harder to ‘go with the flow’ of writing, and is cumbersome and time-consuming. Time-consuming: a click for each block instead of just writing. More clicks equal wasted time.</p></blockquote>\n<p>In a review titled &#8220;<a href=\"https://wordpress.org/support/topic/lots-of-potential-but-too-soon-for-core/\" rel=\"noopener noreferrer\" target=\"_blank\">Lots of potential but too soon for core</a>,&#8221; Mark Wilkinson details several specific usability issues:</p>\n<blockquote><p>The interface I find confusing – I think it is because it is too minimal. I found that it was all too easy to add a block by mistake and then not knowing what the block was or why it was there.</p>\n<p>There is too much reliance on hover effects, with things appearing and disappearing all the time. I also find it hard to know where the focus is on the screen as it just uses a faint grey border.</p></blockquote>\n<p>Several reviewers were candid about their distaste for the concept of putting content into blocks. The Gutenberg team has readily communicated its vision for the block-based editor, but this tends to speak more to developers.</p>\n<p>&#8220;Why does every little thing have to be in a separate block?&#8221; one reviewer <a href=\"https://wordpress.org/support/topic/im-not-change-resistant-but-this-has-a-way-to-go/\" rel=\"noopener noreferrer\" target=\"_blank\">asked</a> before describing multiple usability issues with current block behavior. &#8220;That is a feature I think I actually detest. I do not want 50 zillion little fussy blocks on a page. I had entire blocks just disappear on me and a lot of the time, I was initially unsure of exactly what I did to make them disappear. This is bad. Some of the time it was placing a block, like an image block, and then deleting the image … the entire block went, which meant I had to go through the motions to add the block, then add an image block again, and then add my image again. Lame.&#8221;</p>\n<p>Multiple reviewers commented that previously simple tasks are much more complicated in Gutenberg. Others said after reading official replies to reviews, they felt that leaving specific feedback was a waste of time. Canned responses from the Gutenberg team gave some the impression that their feedback wasn&#8217;t heard or valued.</p>\n<blockquote><p>My feeling while reading the WordPress developer responses is that that they have no intention of either stopping or postponing Gutenberg no matter what bug or problem is given to their attention. &#8211; <a href=\"https://wordpress.org/support/topic/can-i-just-interject-here/\" rel=\"noopener noreferrer\" target=\"_blank\">@lauritasita</a></p></blockquote>\n<blockquote><p>I have read all the reviews (and also the Gutenberg-lovers’ replies) and it seems that it is not really a discussion. The question on what is missing in this editor is useless if people simply do not want such a feature in their install. All you do is trying to convince people that it would only take time to get used to a modern technology. In my eyes this is bullshit. I myself love new features – if they are useful. &#8211; <a href=\"https://wordpress.org/support/topic/time-to-respect-your-users-matt/\" rel=\"noopener noreferrer\" target=\"_blank\">@peg20</a></p></blockquote>\n<p>Based on the responses to reviews, it isn&#8217;t clear to testers whether the Gutenberg team is willing to make major changes to re-design features that are not easy to use or whether they are simply combing the reviews for feedback on bugs with the existing interface.</p>\n<h3>Classic Editor Plugin Installations are on the Rise as Users Prepare for WordPress 5.0</h3>\n<p>In the days following WordPress 4.9.8&#8217;s release, active installations of the <a href=\"https://wordpress.org/plugins/classic-editor/\" rel=\"noopener noreferrer\" target=\"_blank\">Classic Editor</a> plugin have jumped from 7,000 to 60,000, a 757% increase. However, none of these figures in isolation can tell the whole story of users&#8217; experience with the new editor.</p>\n<p>In <a href=\"https://www.facebook.com/groups/advancedwp/permalink/1986704551391749/?comment_id=1986914094704128&reply_comment_id=1986943451367859&comment_tracking=%7B%22tn%22%3A%22R9%22%7D\" rel=\"noopener noreferrer\" target=\"_blank\">response to criticism</a> on the Advanced WordPress Facebook group, Gutenberg contributor Gary Pendergast said he doesn&#8217;t see users installing the Classic Editor plugin as a negative reaction. &#8220;People ensuring that their site is ready for WordPress 5.0 is absolutely a good thing,&#8221; Pendergast said. &#8220;For a lot of sites, that means sticking with their current workflows for now.&#8221;</p>\n<p>Pendergast also said the growing number of Classic Editor installs is a good indication that WordPress users are &#8220;proactively maintaining their sites, and a reasonable indication that they intend to upgrade to WordPress 5.0.&#8221;</p>\n<p>&#8220;People certainly have strong feelings about it, and &#8216;fear of change&#8217; is absolutely a legitimate feeling: we need to provide the right tools to empower everyone who uses WordPress,&#8221; Pendergast said. &#8220;Some people will jump right into the brave new block-based world, some people will prefer to use the Classic Editor plugin as a way to keep their existing workflows. When WordPress 5.0 lands, neither way should be seen as the &#8216;correct&#8217; way &#8211; they&#8217;re both entirely legitimate.&#8221;</p>\n<p>One major theme in both positive and negative reviews of the plugin is the desire for Gutenberg to be opt-in for WordPress 5.0, instead of having it auto-enabled for all users.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">The \"Try Gutenberg\" callout in WordPress 4.9.8 looks great! Would love to see this be the official approach when WordPress 5.0 is released vs auto-enabling. Give the users time to check it out before forcing it on them. <a href=\"https://t.co/QBiPh7IROe\">pic.twitter.com/QBiPh7IROe</a></p>\n<p>&mdash; Brad Williams (@williamsba) <a href=\"https://twitter.com/williamsba/status/1025025636149157889?ref_src=twsrc%5Etfw\">August 2, 2018</a></p></blockquote>\n<p></p>\n<p>Developers and agencies are expected to control that experience for their clients by installing the <a href=\"https://wordpress.org/plugins/classic-editor/\" rel=\"noopener noreferrer\" target=\"_blank\">Classic Editor</a> or <a href=\"https://wordpress.org/plugins/gutenberg-ramp/\" rel=\"noopener noreferrer\" target=\"_blank\">Gutenberg Ramp</a> for installations that may have compatibility issues. For millions of other WordPress users without their own developers or engineering teams, discovering Gutenberg auto-enabled after updating to WordPress 5.0 will be a moment of reckoning. On the other hand, phasing the new editor in over time may severely limit adoption and extinguish the ecosystem&#8217;s impetus to offer Gutenberg-compatible products.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Not auto-enabling it should be strongly considered for 5.0 and also why setting a specific release number for it was a mistake. These reviews have been absolutely brutal and the uptick in 1 stars has been from average users and not disgruntled or vocal developers.</p>\n<p>&mdash; Carl Hancock <img src=\"https://s.w.org/images/core/emoji/11/72x72/1f680.png\" alt=\"🚀\" class=\"wp-smiley\" /> (@carlhancock) <a href=\"https://twitter.com/carlhancock/status/1026542036936056832?ref_src=twsrc%5Etfw\">August 6, 2018</a></p></blockquote>\n<p></p>\n<p>The development community, along with thousands of WordPress users who now have Gutenberg on their radar, will be watching to see how the team evaluates feedback from this new wave of testing. Up until this point, only the most curious and motivated WordPress users have taken Gutenberg for a spin. Widespread testing has just begun and we&#8217;re not yet seeing a complete picture of how well the new editor will be received.</p>\n<p>My <a href=\"https://wptavern.com/wordpress-new-gutenberg-editor-now-available-as-a-plugin-for-testing\" rel=\"noopener noreferrer\" target=\"_blank\">initial impression</a>, after first trying it a year ago, was that Gutenberg is the most exciting thing to happen to WordPress in a long time. After reading hundreds of negative reviews, I still believe in the block concept but am convinced that Gutenberg needs to deliver a beautiful writing experience in order to win people over.</p>\n<p>If WordPress is my home for writing on the web, I want to feel at home in the interface. I don&#8217;t want to have to hunt for actions buried two-clicks deep. When I use the editor I want to have the feeling of &#8220;I love writing here.&#8221; Gutenberg doesn&#8217;t deliver that yet.</p>\n<p>WordPress has an opportunity to provide the best writing experience on the web, instead of relegating it to the <a href=\"https://wptavern.com/bear-app-users-want-wordpress-publishing-integration\" rel=\"noopener noreferrer\" target=\"_blank\">myriad of dedicated writing apps</a> that don&#8217;t have publishing capabilities. A supremely well-designed editor for writing posts, in recognition of the platform&#8217;s blogging roots, would be the promise that hooks users to willingly sign on for years of dealing with Gutenberg&#8217;s shortcomings as it matures into a full-fledged site builder.</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, 07 Aug 2018 03:23:57 +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: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:75:\"WPTavern: WordCamp Ann Arbor Cancelled, Organizers Set Sights on 2019 Event\";s: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=82921\";s: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/wordcamp-ann-arbor-cancelled-organizers-set-sights-on-2019-event\";s: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:1284:\"<p><a href=\"https://2018.annarbor.wordcamp.org/\">WordCamp Ann Arbor MI</a>, is an annual Fall tradition that takes place each October. This year however, the event won&#8217;t be taking place. In an email sent out August 3rd, organizers explained why they cancelled this year&#8217;s event. </p>\n\n<blockquote class=\"wp-block-quote\"><p>Why did we decide to cancel WordCamp Ann Arbor this year? It&#8217;s a long story. The most significant factors involve issues with our venues. Then eventually finding ourselves with too little time to put together an event meeting the standards we strive for. None of us were interested in throwing together a last minute, half-baked event. So we made the call early and turned our attention to 2019.</p><cite>Kyle Maurer &#8211; Co-organizer of WordCamp Ann Arbor</cite></blockquote>\n\n<p>Organizers are already in the planning stages for WordCamp Ann Arbor 2019. Jackson, MI, about 45 minutes west of Ann Arbor is hosting a <a href=\"https://2018.jackson.wordcamp.org/\">WordCamp</a> this weekend. Tickets are $20 each with 35 remaining. </p>\n\n<p>For a detailed look into what it&#8217;s like to organize WordCamp Ann Arbor, check out <a href=\"http://kyleblog.net/2016/11/wordcamp-ann-arbor-2016-recap/\">Maurer&#8217;s post</a> from 2016. <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:\"Mon, 06 Aug 2018 21:01: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:\"\";}}}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:92:\"Post Status: Considerations for eCommerce merchants, with Andrew Youderian of eCommerce Fuel\";s: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=46845\";s: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:102:\"https://poststatus.com/considerations-for-ecommerce-merchants-with-andrew-youderian-of-ecommerce-fuel/\";s: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:1768:\"<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, I bring on <a href=\"https://twitter.com/youderian\">Andrew Youderian</a>. Andrew runs eCommerce Fuel &#8212; a great website geared toward eCommerce store owners, specifically those making high six figures or seven figures in revenue per year.</p>\n<p>Andrew keeps his ear low to the ground in the eCommerce landscape and carries no specific WordPress bias. If anything his experience is in other platforms &#8212; making a discussion with him both on platforms and also just eCommerce in general particularly valuable to me.</p>\n<p></p>\n<h3>Episode Links</h3>\n<ul>\n<li><a href=\"https://ecommercefuel.com\">eCommerce Fuel</a></li>\n<li><a href=\"https://www.ecommercefuel.com/ecommerce-report-2018/#info-anchor\">State of the merchant</a></li>\n</ul>\n<h3>Sponsor: SiteGround</h3>\n<p>Engineered for speed, built for security, crafted for WordPress. <a href=\"https://www.siteground.com/poststatus\">SiteGround</a> offers feature-rich managed WordPress hosting with premium support, and is officially recommended by WordPress.org. Thanks to <a href=\"https://www.siteground.com/poststatus\">SiteGround</a> 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:\"Fri, 03 Aug 2018 21:17: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: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: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:34:\"WPTavern: WordPress 4.9.8 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=82870\";s: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:45:\"https://wptavern.com/wordpress-4-9-8-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:1203:\"<p>WordPress 4.9.8 is <a href=\"https://wordpress.org/news/2018/08/wordpress-4-9-8-maintenance-release/\">available for download</a> and is a maintenance release. Headlining this version is the &#8220;Try Gutenberg&#8221; callout. Note that not everyone will see the callout. Its visibility is determined <a href=\"https://wptavern.com/wordpress-4-9-8-rc-3-released-limits-try-gutenberg-callout-visibility\">based on certain criteria.</a></p>\n\n<img />Gutenberg Callout in WordPress 4.9.8\n\n<p>WordPress 4.9.8 continues to improve the foundation set forth by the privacy improvements that went into core earlier this year. For example, the type of request that is being confirmed is now included in the subject line for privacy confirmation emails. </p>\n\n<p>In total, this release has 46 bug fixes from more than 50 contributors. It was lead by <a href=\"https://profiles.wordpress.org/pbiron\">Paul Biron</a> and <a href=\"https://profiles.wordpress.org/joshuawold\">Joshua Wold</a>. Since 4.9.8 is a maintenance release, sites that are able will update automatically. To see a full list of changes, check out the <a href=\"https://make.wordpress.org/core/2018/08/02/wordpress-4-9-8/\">detailed changelog</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, 03 Aug 2018 00:12:05 +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:87:\"WPTavern: WordPress.com Partners with Pexels to Offer Diverse, Free Stock Photo Library\";s: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=82856\";s: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:97:\"https://wptavern.com/wordpress-com-partners-with-pexels-to-offer-diverse-free-stock-photo-library\";s: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:2952:\"<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/08/pexels-photo-1181618.jpeg?ssl=1\"><img /></a>image credit: <a href=\"https://www.pexels.com/photo/three-women-in-front-of-desk-1181618/\">Christina Morillo from Pexels</a>\n<p>WordPress.com has partnered with <a href=\"https://www.pexels.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Pexels</a>, a popular stock photo library, to offer convenient access to stock photos inside the post editor. Hundreds of high quality free stock photo sites have cropped up on the web over the past few years, but Pexels is differentiating itself with a commitment to hosting diversity-focused images and videos that represent a wide range of experiences. WordPress.com is working with them and other partners to <a href=\"https://wordpress.com/read/feeds/25823/posts/1945569908\" rel=\"noopener noreferrer\" target=\"_blank\">make more diverse images available to users</a>:</p>\n<blockquote><p>Stock-image libraries have historically struggled to represent all experiences, and often excluded photos of people of color, people with disabilities, or non-binary individuals. Pexels is working to change that, and since partnering with them we’ve helped incorporate diversity-focused libraries to their collection. Ultimately, we believe it’s on us to help find a solution to this problem, and avoid generic stock images that often perpetuate stereotypes.</p></blockquote>\n<p>WordPress.com users can access the images via the Add Media button. Self-hosted site owners with Jetpack-enabled sites can also access the library when composing new posts on WordPress.com. Automattic happiness engineer Anne McCarthy posted a demo of where to find the new images:</p>\n<p><a href=\"https://cloudup.com/c-ZzCzFS1Rn\"><img src=\"https://i2.wp.com/cldup.com/mJOr5iicyD.gif?resize=627%2C348&ssl=1\" alt=\"Media\" width=\"627\" height=\"348\" /></a></p>\n<p>More than 1,000 developers and companies are using the <a href=\"https://www.pexels.com/api/\" rel=\"noopener noreferrer\" target=\"_blank\">Pexels API</a>. The site regularly hosts diversity-focused photo <a href=\"https://www.pexels.com/challenges/\" rel=\"noopener noreferrer\" target=\"_blank\">challenges</a> with prizes for the best submissions. Photographers who are inspired to contribute can submit their work to the library but should be aware of its <a href=\"https://www.pexels.com/photo-license\" rel=\"noopener noreferrer\" target=\"_blank\">open license</a>.</p>\n<p>&#8220;I like the idea, and, as a photoblogger, I’m open to sharing my images,&#8221; one reader commented on the announcement. &#8220;But I [think] the license rules are too open (for me). I’m happy to share, attribution would be nice (not necessary), but editing of my photos seems a step too far.&#8221;</p>\n<p>Feedback on the library has been overwhelmingly positive so far and WordPress.com users have already downloaded more than 1 million images since the free stock image library was introduced.</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, 02 Aug 2018 23:45:58 +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: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:45:\"Dev Blog: WordPress 4.9.8 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=6165\";s: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://wordpress.org/news/2018/08/wordpress-4-9-8-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:9492:\"<p>We are pleased to announce the immediate availability of WordPress 4.9.8.  This maintenance release fixes 46 bugs, enhancements and blessed tasks, including updating the Twenty Seventeen bundled theme.</p>\n<p><span>Following are the highlights of what is now available.</span></p>\n<h2>“Try Gutenberg” callout</h2>\n<p><span>Most users will now be presented with a notice in their WordPress dashboard. This </span>“Try Gutenberg” is an opportunity for users to use the Gutenberg block editor before it is released in WordPress 5.0.</p>\n<p><img class=\"alignnone wp-image-6168 size-full\" src=\"https://i0.wp.com/wordpress.org/news/files/2018/08/Screen-Shot-2018-08-02-at-11.42.39-am.png?resize=632%2C392&ssl=1\" alt=\"\" width=\"632\" height=\"392\" /></p>\n<p>In WordPress 4.9.8, the callout will be shown to the following users:</p>\n<ul>\n<li>If Gutenberg <em>is not</em> installed or activated, the callout will be shown to Admin users on single sites, and Super Admin users on multisites.</li>\n<li>If Gutenberg <em>is</em> installed and activated, the callout will be shown to Contributor users and above.</li>\n<li>If the Classic Editor plugin is installed and activated, the callout will be hidden for all users.</li>\n</ul>\n<p class=\"entry-title\"><span>You can learn more by reading  </span><a href=\"https://make.wordpress.org/core/2018/08/02/try-gutenberg-callout-in-wordpress-4-9-8/\">“Try Gutenberg” Callout in WordPress 4.9.8</a>.</p>\n<h2>Privacy fixes/enhancements</h2>\n<p>This release includes 18 Privacy fixes focused on ensuring consistency and flexibility in the new personal data tools <span>that were </span>added in 4.9.6, including:</p>\n<ul>\n<li>The type of request being confirmed is now included in the subject line for all privacy confirmation emails.</li>\n<li>Improved consistency with site name being used for privacy emails in multisite.</li>\n<li>Pagination for Privacy request admin screens can now be adjusted.</li>\n<li>Increased the test coverage for several core privacy functions.</li>\n</ul>\n<p><a href=\"https://make.wordpress.org/core/2018/08/02/wordpress-4-9-8/\">This post has more information about all of the issues fixed in 4.9.8 if you&#8217;d like to learn more</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.9.8</a> or venture over to Dashboard → Updates and click &#8220;Update Now.&#8221; Sites that support automatic background updates are already beginning to update automatically.</p>\n<p>Thank you to everyone who contributed to WordPress 4.9.8:</p>\n<p><a href=\"https://profiles.wordpress.org/1naveengiri/\">1naveengiri</a>, <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/\">Abdullah Ramzan</a>, <a href=\"https://profiles.wordpress.org/alejandroxlopez/\">alejandroxlopez</a>, <a href=\"https://profiles.wordpress.org/allendav/\">Allen Snook</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/andrewtaylor-1/\">Andrew Taylor</a>, <a href=\"https://profiles.wordpress.org/aryamaaru/\">Arun</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/bph/\">Birgit Pauli-Haack</a>, <a href=\"https://profiles.wordpress.org/bjornw/\">BjornW</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/burhandodhy/\">Burhan Nasir</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/chrislema/\">Chris Lema</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/danieltj/\">Daniel James</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</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/dontstealmyfish/\">dontstealmyfish</a>, <a href=\"https://profiles.wordpress.org/dyrer/\">dyrer</a>, <a href=\"https://profiles.wordpress.org/felipeelia/\">Felipe Elia</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/fclaussen/\">Fernando Claussen</a>, <a href=\"https://profiles.wordpress.org/garetharnold/\">Gareth</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/gm_alex/\">GM_Alex</a>, <a href=\"https://profiles.wordpress.org/idea15/\">Heather Burns</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/jpry/\">Jeremy Pry</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/joen/\">Joen Asmussen</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/spacedmonkey/\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha</a>, <a href=\"https://profiles.wordpress.org/joshuawold/\">JoshuaWold</a>, <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a>, <a href=\"https://profiles.wordpress.org/jrf/\">jrf</a>, <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a>, <a href=\"https://profiles.wordpress.org/khaihong/\">khaihong</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">kjellr</a>, <a href=\"https://profiles.wordpress.org/xkon/\">Konstantinos Xenos</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/leanderiversen/\">Leander Iversen</a>, <a href=\"https://profiles.wordpress.org/leemon/\">leemon</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/matveb/\">Matias Ventura</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/mensmaximus/\">mensmaximus</a>, <a href=\"https://profiles.wordpress.org/mermel/\">mermel</a>, <a href=\"https://profiles.wordpress.org/metalandcoffee/\">metalandcoffee</a>, <a href=\"https://profiles.wordpress.org/michelleweber/\">michelleweber</a>, <a href=\"https://profiles.wordpress.org/dimadin/\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/xpertone/\">Muhammad Kashif</a>, <a href=\"https://profiles.wordpress.org/nao/\">Naoko Takano</a>, <a href=\"https://profiles.wordpress.org/nathanatmoz/\">Nathan Johnson</a>, <a href=\"https://profiles.wordpress.org/ov3rfly/\">Ov3rfly</a>, <a href=\"https://profiles.wordpress.org/palmiak/\">palmiak</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</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/rafsuntaskin/\">Rafsun Chowdhury</a>, <a href=\"https://profiles.wordpress.org/redcastor/\">redcastor</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/pross/\">Simon Prosser</a>, <a href=\"https://profiles.wordpress.org/skoldin/\">skoldin</a>, <a href=\"https://profiles.wordpress.org/spyderbytes/\">spyderbytes</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a>, <a href=\"https://profiles.wordpress.org/sebastienserre/\">Sébastien SERRE</a>, <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/tharsheblows/\">tharsheblows</a>, <a href=\"https://profiles.wordpress.org/thomasplevy/\">Thomas Patrick Levy</a>, <a href=\"https://profiles.wordpress.org/timbowesohft/\">timbowesohft</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/tobifjellner/\">Tor-Bjorn Fjellner</a>, <a href=\"https://profiles.wordpress.org/itowhid06/\">Towhidul Islam</a>, <a href=\"https://profiles.wordpress.org/usmankhalid/\">Usman Khalid</a>, <a href=\"https://profiles.wordpress.org/warmlaundry/\">warmlaundry</a>, <a href=\"https://profiles.wordpress.org/earnjam/\">William Earnhardt</a>, <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a>, and <a href=\"https://profiles.wordpress.org/yuriv/\">YuriV</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, 02 Aug 2018 21:25:41 +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 Biron\";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: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:84:\"WPTavern: Official Gutenberg Information Site Updated with Interactive Frontend Demo\";s: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=82821\";s: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:95:\"https://wptavern.com/official-gutenberg-information-site-updated-with-interactive-frontend-demo\";s: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:2132:\"<p>The official <a href=\"https://wordpress.org/gutenberg/\" rel=\"noopener noreferrer\" target=\"_blank\">Gutenberg information site</a> has been updated to feature an interactive demo that can be manipulated on the frontend. It is based on <a href=\"https://wptavern.com/frontenberg-lets-users-test-gutenberg-on-the-frontend\" rel=\"noopener noreferrer\" target=\"_blank\">Frontenberg</a>, a <a href=\"https://testgutenberg.com/\" rel=\"noopener noreferrer\" target=\"_blank\">site</a> created by Tom Nowell, VIP Wrangler at Automattic. It loads an instance of WordPress with Gutenberg on the frontend so visitors don&#8217;t have to login or create a test site to try it.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/08/gutenberg-demo.png?ssl=1\"><img /></a></p>\n<p>Gutenberg&#8217;s new demo <a href=\"https://web.archive.org/web/20180730083424/https://wordpress.org/gutenberg/\" rel=\"noopener noreferrer\" target=\"_blank\">replaces the walls of text that were there previously</a>, which described the vision and approach for the new editor and explained blocks in depth with screenshots. Instead, the updated page features shorter, more succinct explanations of the new editor as an interactive part of demo.</p>\n<p>The demo is also live on all Rosetta sites, like <a href=\"http://fr.wordpress.org/gutenberg\" rel=\"noopener noreferrer\" target=\"_blank\">fr.wordpress.org/gutenberg</a>, so WordPress users from around the world can view it in their own languages.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/08/gutenberg-demo-rosetta-sites.png?ssl=1\"><img /></a></p>\n<p>WordPress contributors are feverishly working to prepare for the &#8220;Try Gutenberg&#8221; callout that will ship with WordPress 4.9.8, which is scheduled for Thursday, August 2nd. It will be many users&#8217; first exposure to the new editor and the demo gives them a chance to experience it in a hands-on way before making a decision about installing it. Instead of dismissing Gutenberg out of hand based on a quick glance at the screenshots and text, users have the opportunity to test drive it without breaking anything.</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, 02 Aug 2018 05:01:31 +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: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:68:\"WPTavern: WPWeekly Episode 325 – A Different Facebook for Everyone\";s: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=82830&preview=true&preview_id=82830\";s: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/wpweekly-episode-325-a-different-facebook-for-everyone\";s: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:2387:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I discuss what&#8217;s new in Gutenberg 3.4 and share our recent experiences with the editor. We talk about Facebook&#8217;s decision to shut down its API for apps to publish to user&#8217;s profiles on their behalf. This leads to a side rant of our user experience with Facebook and the history between it and Twitter.</p>\n<p>We talk about what&#8217;s new in WordPress 4.9.8 RC 3 and when you can expect a final release. Last but not least, we discuss Slack&#8217;s acquisition of HipChat and share our reasons for joining Twitter.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/gutenberg-3-4-adds-new-warning-to-classic-editor-when-editing-posts-containing-blocks\">Gutenberg 3.4 Adds New Warning to Classic Editor When Editing Posts Containing Blocks</a></p>\n<p><a href=\"https://wptavern.com/wordpress-4-9-8-rc-3-released-limits-try-gutenberg-callout-visibility\">WordPress 4.9.8 RC 3 Released, Limits ‘Try Gutenberg’ Callout Visibility</a></p>\n<p><a href=\"https://wptavern.com/facebook-shuts-down-api-for-publishing-to-user-timelines-impacts-jetpacks-publicize-feature\">Facebook Shuts Down API for Publishing to User Timelines, Impacts Jetpack’s Publicize Feature</a></p>\n<p><a href=\"https://wptavern.com/wordpress-coding-standards-1-0-0-released\">WordPress Coding Standards 1.0.0 Released</a></p>\n<p><a href=\"https://wptavern.com/woosesh-virtual-woocommerce-conference-to-be-held-october-18-19\">WooSesh Virtual WooCommerce Conference to be Held October 18-19</a></p>\n<p><a href=\"https://wptavern.com/slack-acquires-hipchat-moves-blog-from-medium-to-wordpress\">Slack Acquires HipChat, Moves Blog from Medium to WordPress</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, August 8th 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 #325:</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, 02 Aug 2018 02:02:31 +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:82:\"WPTavern: Easy Digital Downloads Substantially Reduces Prices for Extension Passes\";s: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=82825\";s: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:93:\"https://wptavern.com/easy-digital-downloads-substantially-reduces-prices-for-extension-passes\";s: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:3693:\"<p>Pippin Williamson, founder of <a href=\"https://wordpress.org/plugins/easy-digital-downloads/\">Easy Digital Downloads</a>, published <a href=\"https://easydigitaldownloads.com/blog/we-have-lowered-prices-for-extension-access-passes/?utm_source=Twitter&utm_medium=social&utm_term=we-have-lowered-prices-for-extension-access-passes&utm_content=0&utm_campaign=PostPromoterPro\">an apology</a> on the company&#8217;s blog today admitting that it made a mistake in its pricing model for extension passes. </p>\n\n<p>In mid-June, the <a href=\"https://easydigitaldownloads.com/blog/easy-digital-downloads-pricing-options/\">company introduced</a> a new set of pricing options or passes. The passes come with a single license that provide access to a group of extensions. The prices for each pass were as follows:</p>\n\n<ul><li>Personal Pass: $199</li><li>Extended Pass: $399</li><li>Professional Pass: $699</li><li>All Access Pass: $899</li></ul>\n\n<p>After six weeks, Williamson noticed that customers were continuing to purchase individual extensions instead of the passes. </p>\n\n<p>&#8220;Our expectation and intent in creating the passes was for store owners to be able to purchase access to multiple individual extensions in a more economical way, but that’s not what happened,&#8221; he said. </p>\n\n<p>&#8220;Instead, store owners continued to purchase only the individual extensions they needed because the price tags of the passes were still too high. It is clear that we made a mistake in our pass pricing, and so today we’d like to apologize for that and announce new, lower prices.&#8221;</p>\n\n<p>After two weeks of testing, the prices of each pass have been significantly reduced to the following amounts:</p>\n\n<ul><li>Personal Pass: <strong>$99</strong></li><li>Extended Pass: <strong>$199</strong></li><li>Professional Pass: <strong>$299</strong></li><li>All Access Pass: <strong>$499</strong><strong></strong><strong></strong></li></ul>\n\n<p>In addition to the pricing changes, customers who purchased a pass between June 1st and August 1st are eligible for a refund. The refund is equal to the difference of the purchased price and the new price. Customers have until August 15th, to <a href=\"https://easydigitaldownloads.com/support\">request a refund</a>. <br /></p>\n\n<p>Customers who purchased passes before the reduction will have their renewal amounts automatically changed to the lower price. </p>\n\n<p>Pricing WordPress products and services is tough and requires experimentation. There are numerous <a href=\"https://wordpress.tv/?s=pricing\">WordCamp sessions</a>, <a href=\"https://kinsta.com/blog/how-to-price-a-product-wordpress/\">articles</a>, and <a href=\"https://premium.wpmudev.org/blog/pricing-your-wordpress-services/\">in-depth guides</a> on the subject but there&#8217;s not one answer that&#8217;s best for every business. </p>\n\n<p>Publicly admitting to a pricing mistake is one thing, but offering refunds to try to get customers on equal footing is going the extra mile.</p>\n\n<p>The company could have handled things in a way that&#8217;s not as beneficial to customers, but they chose what I think is a commendable way. Williamson&#8217;s closing statement speaks about the way he leads his company and how he makes these types of decisions.</p>\n\n<blockquote class=\"wp-block-quote\"><p>While we are far from perfect, as this pricing mistake clearly indicates, we are dedicated to doing right by our customers. To each of you, we would like to extend our most sincere thanks for sticking with us as we work through these changes</p><cite>Pippin Williamson</cite></blockquote>\n\n<p>It&#8217;s a luxury to have business owners like Williamson in the WordPress economy. </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, 02 Aug 2018 01:00:41 +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:95:\"WPTavern: Gutenberg 3.4 Adds New Warning to Classic Editor When Editing Posts Containing Blocks\";s: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=82772\";s: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:106:\"https://wptavern.com/gutenberg-3-4-adds-new-warning-to-classic-editor-when-editing-posts-containing-blocks\";s: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:2614:\"<p><a href=\"https://make.wordpress.org/core/2018/07/31/whats-new-in-gutenberg-30th-july/\" rel=\"noopener noreferrer\" target=\"_blank\">Gutenberg 3.4</a> was released yesterday with fixes intended to prepare the plugin for converting existing content to blocks. A wave of new users will soon be testing the new plugin as the result of the &#8220;Try Gutenberg&#8221; prompt in WordPress 4.9.8. The release date has been <a href=\"https://wptavern.com/wordpress-4-9-8-rc-3-released-limits-try-gutenberg-callout-visibility\" rel=\"noopener noreferrer\" target=\"_blank\">pushed back to Thursday, August 2nd</a>.</p>\n<p>In early July, the Gutenberg team froze new features on the plugin and shifted to focus on bugs, enhancements, compatibility, and API stability. An overview of the <a href=\"https://github.com/WordPress/gutenberg/issues/4894\" rel=\"noopener noreferrer\" target=\"_blank\">major functionality shipping in Gutenberg</a> is available as a list on GitHub. Gutenberg 3.4 continues refinements on these features.</p>\n<p>In preparation for users switching back and forth between the new and old editors, this release <a href=\"https://github.com/WordPress/gutenberg/pull/8247\" rel=\"noopener noreferrer\" target=\"_blank\">adds a warning in the classic editor</a> when users attempt to edit posts that contain blocks.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2018/07/Screen-Shot-2018-08-01-at-11.16.41-AM.png?ssl=1\"><img /></a></p>\n<p>Shared blocks have been renamed to &#8220;<a href=\"https://github.com/WordPress/gutenberg/pull/8123\" rel=\"noopener noreferrer\" target=\"_blank\">Reusable blocks</a>&#8221; to better convey their function.</p>\n<p>Theme developers can now <a href=\"https://github.com/WordPress/gutenberg/pull/6628\" rel=\"noopener noreferrer\" target=\"_blank\">configure font sizes</a> that show in the editor.</p>\n<p>This release also adds other little enhancements, including an <a href=\"https://github.com/WordPress/gutenberg/pull/8084\" rel=\"noopener noreferrer\" target=\"_blank\">edit button</a> for embed blocks, the ability to create a video block by <a href=\"https://github.com/WordPress/gutenberg/pull/8122\" rel=\"noopener noreferrer\" target=\"_blank\">dropping a video on an insertion point</a>, <a href=\"https://github.com/WordPress/gutenberg/pull/8187\" rel=\"noopener noreferrer\" target=\"_blank\">RTL CSS</a>, and accessibility improvements.</p>\n<p>Check out the release post for a full list of all the enhancements and bugs fixes in <a href=\"https://make.wordpress.org/core/2018/07/31/whats-new-in-gutenberg-30th-july/\" rel=\"noopener noreferrer\" target=\"_blank\">Gutenberg 3.4</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, 01 Aug 2018 16:46: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: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:45;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:\"Dev Blog: The Month in WordPress: July 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=6158\";s: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://wordpress.org/news/2018/08/the-month-in-wordpress-july-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:6410:\"<p>With WordPress 5.0 coming closer, there’s lots of work going on all across the project. Read on to learn about how we progressed in July.</p>\n\n<hr class=\"wp-block-separator\" />\n\n<h2>Release of WordPress 4.9.7</h2>\n\n<p>On July 5, <a href=\"https://wordpress.org/news/2018/07/wordpress-4-9-7-security-and-maintenance-release/\">WordPress 4.9.7 was released</a>,  fixing one security issue and 17 other bugs across the platform.<br /></p>\n\n<p>While this is a minor release, incremental fixes are essential to keep WordPress running smoothly. Everyone is encouraged to update as soon as possible and to make sure that automatic updates are switched on.<br /></p>\n\n<p>Would you like to get involved in building WordPress Core? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a> and join the #core channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n\n<h2>The New WordPress Editor</h2>\n\n<p>In the upcoming minor release of WordPress, 4.9.8, a new section in the dashboard will feature Gutenberg, the upcoming content editor for WordPress.<br /></p>\n\n<p>While the official release of Gutenberg <a href=\"https://wordpress.org/news/2018/07/update-on-gutenberg/\">is scheduled</a> for the coming months, you can already install it as <a href=\"https://wordpress.org/plugins/gutenberg/\">a plugin</a> to test it out right now. Additionally, <a href=\"https://wordpress.org/gutenberg/\">a brand new demo page</a> is now available — play around with the many features the editor has to offer, without installing it on your own site.<br /></p>\n\n<p>Would you like to help build or test Gutenberg? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a> and join the #core-editor channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n\n<h2>Page Design Updates on WordPress.org</h2>\n\n<p>Bit by bit we’re refreshing the design of WordPress.org. The latest pages to get a new treatment have been <a href=\"https://wordpress.org/download/\">the Download page</a> and <a href=\"https://profiles.wordpress.org/matt/\">user profiles</a>.<br /></p>\n\n<p>The Meta and Design teams worked hard to make these new designs a reality, with notable contributions from <a href=\"https://profiles.wordpress.org/melchoyce/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>melchoyce</a>, <a href=\"https://profiles.wordpress.org/obenland/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>obenland</a>, <a href=\"https://profiles.wordpress.org/mapk/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>mapk</a>, and <a href=\"https://profiles.wordpress.org/kjellr/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>kjellr</a>. The new designs enhance the overall look of the site and provide more relevant information to those searching.<br /></p>\n\n<p>Would you like to get involved in the design refresh? Follow the <a href=\"https://make.wordpress.org/meta/\">Meta</a> and <a href=\"https://make.wordpress.org/design/\">Design</a> team blogs and join the #meta and #design channels in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n\n<h2>The First WP-CLI Hack Day</h2>\n\n<p>On Friday July 20, the WP-CLI team <a href=\"https://make.wordpress.org/cli/2018/07/04/wp-cli-hack-day/\">held their first hack day</a> — a global event encouraging people to contribute to the official command line tool for WordPress.<br /></p>\n\n<p>Run by <a href=\"https://profiles.wordpress.org/schlessera/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>schlessera</a>, the event <a href=\"https://make.wordpress.org/cli/2018/07/21/wp-cli-hack-day-results/\"> was a great success</a>. Twelve pull requests were  merged and another 13 submitted. It also included a video chat to give all contributors a space to meet each other and connect directly.<br /></p>\n\n<p>Would  you like to get involved in contributing to WP-CLI? Follow <a href=\"https://make.wordpress.org/cli/\">the team blog</a> and join the #cli 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><li>The WordPress Foundation is <a href=\"https://wordpressfoundation.org/2018/call-for-organizers-introduction-to-open-source-workshops-for-2018/\">looking for local community organizers to run introductory open-source workshops</a> in 2018.</li><li><a href=\"https://profiles.wordpress.org/chanthaboune/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>chanthaboune</a> compiled <a href=\"https://wordpress.org/news/2018/07/quarterly-updates-q2-2018/\">updates for the last quarter</a> from the contribution teams all across the WordPress project.</li><li>In a great move for internationalization, <a href=\"https://en.blog.wordpress.com/2018/03/29/the-wordpress-mobile-apps-now-support-right-to-left-languages/\">the WordPress Mobile Apps now support right-to-left languages</a>.</li><li><a href=\"https://make.wordpress.org/community/2018/07/10/stripe-is-now-available-to-all-wordcamps/\">WordCamp events can now accept payment via Stripe</a> — PayPal remains an alternative option.</li><li>The WP-CLI team will soon <a href=\"https://make.wordpress.org/cli/2018/07/19/details-on-the-upcoming-major-release/\">release v2.0</a> of the official WordPress command line tool.</li><li>The Fields API project in WordPress Core <a href=\"https://wptavern.com/wordpress-core-fields-api-project-is-seeking-new-leadership\">is looking for a new lead</a> to drive it forward.</li><li>In WordPress 4.9.8, <a href=\"https://make.wordpress.org/core/2018/07/27/registering-metadata-in-4-9-8/\">it will  be possible</a> for developers to fully register the meta fields used by their plugins and themes.</li><li>After many years of hard work, <a href=\"https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards\">v1.0.0 of the WordPress Coding Standards for PHP_CodeSniffer</a> has been released.</li><li>The Mobile team <a href=\"https://make.wordpress.org/mobile/2018/07/31/call-for-testing-wordpress-for-ios-10-6/\">is looking for people to help test</a> v10.6 of WordPress for iOS.</li></ul>\n\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</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:\"Wed, 01 Aug 2018 09:11: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: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: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:33:\"HeroPress: Begin at the Beginning\";s: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=2601\";s: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:118:\"https://heropress.com/essays/begin-at-the-beginning/#utm_source=rss&utm_medium=rss&utm_campaign=begin-at-the-beginning\";s: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:10624:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2018/08/080118-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: I owe it all to a little bit of gumption and to the amazing community of WordPressers who opened their world to me.\" /><p>With this story, as with most things in my life, I never really know where to start. Because of that strange sense of time and action I’ve always been quite fond of the quote from Lewis Carroll’s Alice in Wonderland</p>\n<p>“Begin at the beginning and go on till you come to the end: then stop.”<br />\nBut where, for this story, is the beginning?</p>\n<p>It was a lifetime of choices and serendipitous encounters that led me down the path to WordPress and eventually Automattic. And those same types of choices and encounters that keep me here.</p>\n<h2>Begin at the Beginning&#8230;</h2>\n<p>I was a youngish mother of a youngish child and a full time stay at home parent. I didn’t work outside the home; I was raising my kid. That was both a privilege and a problem. I realized that, as a mother consumed with caring for this new human, I was beginning to lose the very strong sense of identity that I’d always had.</p>\n<p>This was my first experience with not knowing who I was. I always knew who I was, even if I didn’t know who I wanted to be. As a mother though, most of who I am was sucked into caring for my family. Not sleeping. Not taking proper care of myself. Not taking time for my interests. Putting the others in my house before me and saying that it was what I wanted.</p>\n<p><em>Narrator: It wasn’t.</em></p>\n<p>There was a pivot point. A moment before my daughter turned three. When I realized that if she were to choose to become a mother I would not want her to go down the same path of self denial that I had. I would want her to be who she is first and a mother second so that she could be the best self and mother she could be.</p>\n<p>And I realized that was something I could only show by example. But how to start? I’d always been a writer. I often say that I only learned to read so that I could write. Journaling, short stories, poetry. Sometimes just long strings of thoughts and observations that wouldn’t leave my head until I wrote them down. I would write out long “stories” on MySpace about my experiences and realizations. I would scrawl poetry on scrap paper laying around the house. None of it was enough.</p>\n<p>Also, as I understand is fairly typical for a stay at home parent, I had no one to talk to most of the time except for my small child. And while she was super awesome and receptive to any conversation I may want to start, they all tended to transition to discussion of My Little Ponies or a request for ice cream or screen time. So I looked for something more. For a place to discuss the mommified version of myself with no one and everyone. I started a blog.</p>\n<p>But it wasn’t on WordPress.</p>\n<h2>Go On…</h2>\n<p>I wrote and I wrote and I wrote. My experiences, my kid’s experiences. Dreams and hopes and bad poetry. And I found a group of people who shared with me their struggles and dreams as they dove into mine. A web of women and men who got me. Who got what I was going through. Who got what I was doing. A community of individuals, not all like minded, but all understanding.</p>\n<p>And then one day I was asked to write for a city blog, and then another. And as my writing began to expand I found other communities. My sense of self was first preserved but then invigorated and it grew and I stretched my arms and I stretched my wings and I realized I was beginning to feel whole for the first time in a long while.</p>\n<p>But using multiple platforms for my blogging gave me the understanding that the platform I was using was restrictive and unsatisfying. Clunky.</p>\n<p>And that’s when a friend mentioned WordCamp Portland. It was this new thing. We were doing it for the first time. A bunch of bloggers getting together to talk about WordPress and blogging and stuff.</p>\n<p>I had no idea what WordPress was. But my friend said they needed some volunteers to help out, and I’m always one to support my friends, my community. So I asked what I needed to do to help.</p>\n<p>“Move your blog to WordPress”</p>\n<p>And so I did. And something clicked. Once I had moved to a WordPress site I found my passion for blogging was something more. I played with themes, I made headers that felt like art pieces, I helped others transfer their content, set up their sites. I introduced them to a community that I was just beginning to get to know.</p>\n<p>And then there was a cascade of activity. More blogs, podcasting, events, community, and every year there was WordCamp Portland. And I continued to learn and grow my skills as a writer, as a blogger, as a podcaster, and as a WordPresser. I continued to volunteer, and then to speak, and to help organize.</p>\n<h2>And on…</h2>\n<p>But life changes. Sometimes for the better sometimes for the worse. But change is hard. People change or stay the same. Relationships change. Life changes. Sometimes all of the above. So I ended a marriage and found myself stumped. I knew who I was, but who I happened to be was a stay at home mom who hadn’t worked outside the home in eight years and had no marketable skills that I could find that would also allow me to continue to be home for my kid.</p>\n<p>And I panicked and I procrastinated and then I found an opening. A small startup I knew through my interactions with the community needed a customer support person who also knew WordPress.</p>\n<p>A light went on. And I had a job for the first time in eight years. And I knew what I was doing. And I was good at it. And I continued to blog. A little. And I stuck to the little tiny fringes of the WordPress community I knew. Still not realizing how big the rest of it was.</p>\n<p>The Portland WordPress folks were like a river feeding into the ocean of the worldwide community. But I’d only ever stood on the shores of the river and dipped my toes in. All that was about to change.</p>\n<h2>Till You Come to the End…</h2>\n<p>But as I said at the beginning, it’s not that simple. There is no end. There is just more. More stories, more people, more learning, more community. And that’s where we begin the part of the story that tells us where I am today.</p>\n<p>This part begins with an email from a community friend with a link to a job posting. And a new beginning.</p>\n<p>I was working happily at that small startup, spreading my wings. But starting to feel a little bit like my passion wasn’t being put to use when that email arrived. A link to a job posting working as a sponsored volunteer within the WordPress community and question. It was a simple question. “Do you know anyone who would kick ass at this job?”</p>\n<p>DID I? I was reeling from the possibility and doubled over with imposter syndrome and fear. Fear that I wasn’t good enough. Fear that they wouldn’t like me. Fear that I’d be leaving my boss in the lurch.</p>\n<p>So I did what I always did at that time. And what I still do to this day. I procrastinated. I talked. I thought. I woke up in the middle of the night in a panic thinking I had forgotten something. Thinking I had done something wrong.</p>\n<p>But as I sat there one day tinkering on the startup’s site, scheduling posts, checking in on our customers all while getting my daughter ready for school that morning I realized that it was time to set aside those fears. To look that imposter syndrome right in the eye and say “not today” and I started putting together my resume and working on the cover email.</p>\n<p>No one was more surprised than I when I found myself two months later starting my first day at Automattic.</p>\n<p>It’s been about 5 and a half years since that email landed in my inbox. It’s been more than a decade since WordPress landed in my heart and I’m proud to make my living in the wide wonderful world of WordPress. As I write this story for all of you to read—not a cautionary tale I hope, but an inspirational one—I’m just a few days away from the end of my three-month sabbatical (a benefit that all Automatticians are eligible for after 5 years.)</p>\n<p>It’s been a time of rest, readjustment, relaxation. Of edification. But it’s also been a renewal. A time to look back at how I got where I am and remember how lucky I am to be here today. And I owe it all to a little bit of gumption and to the amazing community of WordPressers who opened their world to me. And also to everyone else who is willing to be a part of this great big community founded on open source. On WordPress.</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: Begin at the Beginning\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Begin%20at%20the%20Beginning&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fbegin-at-the-beginning%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Begin at the Beginning\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fbegin-at-the-beginning%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%2Fbegin-at-the-beginning%2F&title=Begin+at+the+Beginning\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Begin at the Beginning\"></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/begin-at-the-beginning/&media=https://heropress.com/wp-content/uploads/2018/08/080118-150x150.jpg&description=Begin at the Beginning\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Begin at the Beginning\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/begin-at-the-beginning/\" title=\"Begin at the Beginning\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/begin-at-the-beginning/\">Begin at the Beginning</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, 01 Aug 2018 08:00:57 +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:9:\"Cami Kaos\";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:86:\"WPTavern: WordPress 4.9.8 RC 3 Released, Limits ‘Try Gutenberg’ Callout Visibility\";s: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=82803\";s: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://wptavern.com/wordpress-4-9-8-rc-3-released-limits-try-gutenberg-callout-visibility\";s: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:1701:\"<p>WordPress 4.9.8 Release Candidate 3 <a href=\"https://make.wordpress.org/core/2018/07/31/wordpress-4-9-8-release-candidate-3/\">is available</a> for testing. This version includes one important enhancement that limits the visibility of the <a href=\"https://wptavern.com/first-look-at-try-gutenberg-prompt-in-wordpress-4-9-8-beta-2\">&#8216;Try Gutenberg&#8217; callout</a>. </p>\n\n<p>If Gutenberg is not installed or activated on a site, the callout will be displayed to users with the <a href=\"https://codex.wordpress.org/Roles_and_Capabilities#install_plugins\">install_plugins</a> capability. If Gutenberg is activated, the callout will be shown to users with the <a href=\"https://codex.wordpress.org/Roles_and_Capabilities#edit_posts\">edit_posts</a> capability. </p>\n\n<p>Limiting the visibility of the callout to a specific subset of users will avoid inundating the WordPress.org support forums with Gutenberg support requests. A concern that was <a href=\"https://core.trac.wordpress.org/ticket/41316#comment:98\">expressed by</a> Daniel Bachhuber four months ago. </p>\n\n<p>&#8220;There&#8217;s a good amount of fit and finish to be desired before rolling out to a large number of unacquainted users,&#8221; Bachhuber said. &#8220;We&#8217;re not quite over the hump on the issues we do already know about. There&#8217;s not a ton of sense in having 10,000 users re-report them.&#8221;</p>\n\n<p>Other than this change, the <a href=\"https://make.wordpress.org/core/2018/07/24/wordpress-4-9-8-release-candidate-1/#change-log\">change log</a> from WordPress 4.9.8 RC 1 remains the same. WordPress 4.9.8 was originally scheduled to be released today, but has been rescheduled for Thursday, August 2nd. </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, 01 Aug 2018 00:14: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: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:105:\"WPTavern: Facebook Shuts Down API for Publishing to User Timelines, Impacts Jetpack’s Publicize Feature\";s: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=82768\";s: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:112:\"https://wptavern.com/facebook-shuts-down-api-for-publishing-to-user-timelines-impacts-jetpacks-publicize-feature\";s: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:4690:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2018/07/logo-facebook-1600.png?ssl=1\"><img /></a></p>\n<p>In the aftermath of the <a href=\"https://en.wikipedia.org/wiki/Facebook%E2%80%93Cambridge_Analytica_data_scandal\" rel=\"noopener noreferrer\" target=\"_blank\">Cambridge Analytica data scandal</a>, Facebook is tightening its control on third-party applications and will no longer allow apps to post to user profiles. In April, the platform <a href=\"https://developers.facebook.com/blog/post/2018/04/24/new-facebook-platform-product-changes-policy-updates/\" rel=\"noopener noreferrer\" target=\"_blank\">announced</a> sweeping changes to the publish_actions permission, which allowed apps to publish to users&#8217; timeline on their behalf.</p>\n<blockquote><p>On August 1st, 2018, the Live API publish_actions permission, which allows an app to publish on behalf of its Users, will be reserved for approved partners. A new permission model that allows apps to publish Videos to their User&#8217;s Groups and Timeline will be created instead.</p>\n<p>Access to the Pages APIs requires re-submission of the application for review before August 1, 2018. This will be required to continue publishing live and VOD video to Pages, as well as reading insights.</p></blockquote>\n<p>Facebook is notorious for swiftly changing its APIs in ways that break apps (sometimes without warning), often sending developers scrambling. For a long time, apps auto-posting to user timelines was part of the wild west of app permissions granted without much oversight from Facebook. Users often unknowingly gave permission to apps that would collect data and spam their Facebook connections with posts made on their behalf.</p>\n<p>Those days are over, but an unfortunate byproduct of this restriction is that apps like WordPress.com and Jetpack&#8217;s Publicize feature can no longer automatically publish posts to user timelines. This change also adversely affects apps like Buffer and Hootsuite that allow users to schedule and publish posts to their social accounts.</p>\n<p><a href=\"https://jetpack.com/2018/07/30/jetpack-6-3-3-facebook-publicize/\" rel=\"noopener noreferrer\" target=\"_blank\">Jetpack 6.3.3</a> removes the ability for users to select Facebook Profile connections and displays a notice regarding existing connections, so users will be aware of which auto-posting connections they are losing. Besides Jetpack, this Facebook API change affects tens of thousands of users who have this functionality implemented through one of many other plugins on WordPress.org.</p>\n<p>Users are now required to manually share their posts to their timelines. They can no longer schedule content to be shared to Facebook at specific times for different audiences.</p>\n<p>Auto-posting to <a href=\"https://www.facebook.com/help/175644189234902/\" target=\"_blank\" rel=\"noopener noreferrer\">Facebook Pages</a> still works, and one option users have is to convert their Profile to a Page or set up a new page. This may not be a suitable alternative for bloggers and those whose writing is not attached to a business or an organization.</p>\n<p>In a recent <a href=\"https://ma.tt/2018/07/my-recode-decode-interview-with-kara-swisher/\" rel=\"noopener noreferrer\" target=\"_blank\">post</a> on his blog, Automattic CEO Matt Mullenweg commented on Facebook&#8217;s decision to turn off auto-posting to profiles.</p>\n<p>&#8220;As it turns out, Facebook also is turning off the ability for WordPress sites — and all websites — to post directly to users’ profile pages,&#8221; Mullenweg said. &#8220;The decision to shut down the API is ostensibly to fight propaganda and misinformation on the platform, but I think it’s a big step back for their embrace of the open web. I hope they change their minds.&#8221;</p>\n<p>If only a select few &#8220;approved partners&#8221; are allowed to automatically broadcast to user timelines, it puts smaller players at a disadvantage, requiring manual sharing each time they publish. Facebook is setting itself up as a gatekeeper that enables news from a small selection of partners to keep pumping through the platform on schedule. Individual voices on smaller websites are no longer able to syndicate to the Facebook platform unless they decide to create a Page.</p>\n<p>Put a different way, the only syndicated content allowed on Facebook will be through channels the company can monetize &#8211; business/organization Pages or partners who are approved to post to user timelines. Users who care about retaining their Facebook audiences will need to remember to manually post their content to the social network after August 1, 2018, when the API changes go into effect.</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, 31 Jul 2018 22:11: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:\"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: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:50:\"Matt: My Recode Decode Interview with Kara Swisher\";s: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=48262\";s: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://ma.tt/2018/07/my-recode-decode-interview-with-kara-swisher/\";s: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:1780:\"<blockquote class=\"wp-block-quote\"><p>&#8220;We want to make the best tools in the world, and we want to do it for decades to come. I&#8217;ve been doing WordPress for 15 years, I want to do it the rest of my life.&#8221; <br /></p></blockquote>\n\n<p>The last time I chatted with <a href=\"https://twitter.com/karaswisher?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor\">Kara</a> was in 2013 <a href=\"https://www.wsj.com/video/wordpress-mullenweg-on-the-future-of-blogging/51B2A49C-EE8D-42EC-911D-370064A4829F.html\">in the back of a pedicab in Austin</a>. This time I got to <a href=\"https://art19.com/shows/recode-decode/episodes/3d56208e-a4b9-4c74-861e-8fec105a4ee8\">sit in the red chair</a> at Vox headquarters in San Francisco, and per usual Kara was thoughtful, thorough and to the point: we talked about WordPress and the future of the open web, the moral imperative of user privacy, and how it all relates to what&#8217;s going on at Facebook. </p>\n\n<p>(As it turns out, Facebook also is <a href=\"https://en.blog.wordpress.com/2018/07/23/sharing-options-from-wordpress-com-to-facebook-are-changing/\">turning off the ability for WordPress sites &#8212; and all websites</a> &#8212; to post directly to users&#8217; profile pages. The decision to shut down the API is ostensibly to fight propaganda and misinformation on the platform, but I think it&#8217;s a big step back for their embrace of the open web. I hope they change their minds.)<br /></p>\n\n<p>Kara and I also talked about distributed work, Automattic&#8217;s <a href=\"https://ma.tt/2018/06/atavist-automattic/\">acquisition of Atavist</a> and <a href=\"https://longreads.com/\">Longreads</a>, and why every tech company should have an editorial team. Thanks again to Kara and the Recode team for having me.</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, 31 Jul 2018 08:31: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:\"\";}}}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:\"\";}}}}}}}}}}}}}}}}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, 28 Aug 2018 03:17:40 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Tue, 28 Aug 2018 03:00:27 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 1\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20130911040210\";}", "no");
INSERT INTO `wp_options` VALUES("912", "wpseo_sitemap_665_cache_validator", "igP7", "no");
INSERT INTO `wp_options` VALUES("913", "wpseo_sitemap_667_cache_validator", "igP9", "no");
INSERT INTO `wp_options` VALUES("914", "wpseo_sitemap_668_cache_validator", "igPb", "no");
INSERT INTO `wp_options` VALUES("915", "wpseo_sitemap_672_cache_validator", "igPc", "no");
INSERT INTO `wp_options` VALUES("996", "wpseo_sitemap_1096_cache_validator", "jgOd", "no");
INSERT INTO `wp_options` VALUES("1013", "wpseo_sitemap_1105_cache_validator", "3v6Ir", "no");
INSERT INTO `wp_options` VALUES("1205", "wpseo_sitemap_1217_cache_validator", "3BN9z", "no");
INSERT INTO `wp_options` VALUES("1272", "_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.8.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.9.8.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.9.8-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.9.8-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.9.8\";s:7:\"version\";s:5:\"4.9.8\";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:1535424847;s:15:\"version_checked\";s:5:\"4.9.8\";s:12:\"translations\";a:0:{}}", "no");
INSERT INTO `wp_options` VALUES("1326", "_site_transient_timeout_et_core_path", "1535511242", "no");
INSERT INTO `wp_options` VALUES("1327", "_site_transient_et_core_path", "/home/alluredi/beyondink.alluredigitalmarketing.com.au/wp-content/themes/Divi/core", "no");
INSERT INTO `wp_options` VALUES("1276", "_site_transient_timeout_et_core_version", "1535511242", "no");
INSERT INTO `wp_options` VALUES("1277", "_site_transient_et_core_version", "3.0.106", "no");
INSERT INTO `wp_options` VALUES("1325", "wpseo_sitemap_1083_cache_validator", "jgOl", "no");
INSERT INTO `wp_options` VALUES("1334", "_site_transient_timeout_browser_11d9a73fb38b2f1c4799e1f5e17c7b14", "1536031047", "no");
INSERT INTO `wp_options` VALUES("1335", "_site_transient_browser_11d9a73fb38b2f1c4799e1f5e17c7b14", "a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"68.0.3440.106\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}", "no");
INSERT INTO `wp_options` VALUES("1124", "redirection_version", "2.4", "yes");
INSERT INTO `wp_options` VALUES("1125", "redirection_options", "a:16:{s:7:\"support\";b:0;s:5:\"token\";s:32:\"d9fecf15b8ecf2192efb94d8ad063519\";s:12:\"monitor_post\";i:0;s:13:\"monitor_types\";a:0:{}s:19:\"associated_redirect\";s:0:\"\";s:11:\"auto_target\";s:0:\"\";s:15:\"expire_redirect\";i:7;s:10:\"expire_404\";i:7;s:7:\"modules\";a:0:{}s:10:\"newsletter\";b:0;s:14:\"redirect_cache\";i:1;s:10:\"ip_logging\";i:1;s:13:\"last_group_id\";i:1;s:8:\"rest_api\";i:0;s:5:\"https\";b:0;s:7:\"version\";s:3:\"3.4\";}", "yes");
INSERT INTO `wp_options` VALUES("1132", "wpseo_sitemap_680_cache_validator", "48bGA", "no");

/* INSERT TABLE DATA: wp_postmeta */
INSERT INTO `wp_postmeta` VALUES("7", "6", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("8", "6", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("6", "6", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("9", "6", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("10", "6", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("11", "6", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("12", "6", "_et_builder_version", "VB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("13", "6", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("14", "6", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("15", "6", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("16", "6", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("17", "6", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("18", "6", "_edit_lock", "1531987309:1");
INSERT INTO `wp_postmeta` VALUES("1700", "211", "_yoast_wpseo_focuskw", "Beyond Ink");
INSERT INTO `wp_postmeta` VALUES("1701", "211", "_yoast_wpseo_metadesc", "We\'re a boutique design and construction company known for progressive and innovative commercial and residential projects, located in South Australia.");
INSERT INTO `wp_postmeta` VALUES("1702", "211", "_yoast_wpseo_linkdex", "55");
INSERT INTO `wp_postmeta` VALUES("1704", "6", "_yoast_wpseo_focuskw", "Commercial Design");
INSERT INTO `wp_postmeta` VALUES("1705", "6", "_yoast_wpseo_metadesc", "We\'re a boutique commercial and residential design and construction company - big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.");
INSERT INTO `wp_postmeta` VALUES("1706", "6", "_yoast_wpseo_linkdex", "51");
INSERT INTO `wp_postmeta` VALUES("1759", "6", "_yoast_wpseo_title", "Beyond Ink - Innovative Commercial and Residential Builders");
INSERT INTO `wp_postmeta` VALUES("1714", "985", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("1715", "985", "_et_builder_version", "VB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("1716", "985", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("1717", "985", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("1718", "985", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("1719", "985", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("1720", "985", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("1721", "985", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("1722", "988", "_wp_attached_file", "2018/07/IMG_3801-e1531907643516.jpg");
INSERT INTO `wp_postmeta` VALUES("1723", "988", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:351;s:6:\"height\";i:263;s:4:\"file\";s:35:\"2018/07/IMG_3801-e1531907643516.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3801-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_3801-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_3801-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_3801-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"IMG_3801-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:21:\"IMG_3801-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"IMG_3801-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:20:\"IMG_3801-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:21:\"IMG_3801-1080x810.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:20:\"IMG_3801-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:22:\"IMG_3801-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 4S\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1461666387\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.28\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:18:\"0.0018315018315018\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1724", "989", "_wp_attached_file", "2018/07/IMG_3809-e1531907559823.jpg");
INSERT INTO `wp_postmeta` VALUES("1725", "989", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:351;s:6:\"height\";i:263;s:4:\"file\";s:35:\"2018/07/IMG_3809-e1531907559823.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_3809-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_3809-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_3809-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_3809-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"IMG_3809-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:21:\"IMG_3809-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"IMG_3809-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:20:\"IMG_3809-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:21:\"IMG_3809-1080x810.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:20:\"IMG_3809-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:22:\"IMG_3809-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 4S\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1461666791\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.28\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:19:\"0.00081499592502037\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("31", "6", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("32", "15", "_wp_attached_file", "2018/04/Beyond-Ink-Logo.jpg");
INSERT INTO `wp_postmeta` VALUES("33", "15", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1723;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2018/04/Beyond-Ink-Logo.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Beyond-Ink-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:\"Beyond-Ink-Logo-300x87.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"Beyond-Ink-Logo-768x223.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:223;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Beyond-Ink-Logo-1024x297.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:297;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"Beyond-Ink-Logo-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:28:\"Beyond-Ink-Logo-1080x500.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"Beyond-Ink-Logo-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"Beyond-Ink-Logo-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:28:\"Beyond-Ink-Logo-1080x313.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:27:\"Beyond-Ink-Logo-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("34", "15", "_wp_attachment_image_alt", "Beyond Ink Logo");
INSERT INTO `wp_postmeta` VALUES("35", "18", "_wp_attached_file", "2018/04/Favicon.jpg");
INSERT INTO `wp_postmeta` VALUES("36", "18", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:425;s:6:\"height\";i:425;s:4:\"file\";s:19:\"2018/04/Favicon.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Favicon-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:\"Favicon-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"Favicon-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"Favicon-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"Favicon-425x382.jpg\";s:5:\"width\";i:425;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"Favicon-400x425.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:425;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("37", "18", "_wp_attachment_image_alt", "Beyond Ink Favicon");
INSERT INTO `wp_postmeta` VALUES("38", "19", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("39", "19", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("40", "19", "_menu_item_object_id", "6");
INSERT INTO `wp_postmeta` VALUES("41", "19", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("42", "19", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("43", "19", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("44", "19", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("45", "19", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("858", "413", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:28:\"2018/06/IMG_6211-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_6211-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_6211-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"IMG_6211-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_6211-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_6211-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_6211-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_6211-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:29:\"www.facebook.com/kensohstudio\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1477492020\";s:9:\"copyright\";s:29:\"www.facebook.com/kensohstudio\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("857", "413", "_wp_attached_file", "2018/06/IMG_6211-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1726", "990", "_wp_attached_file", "2018/07/IMG_7546-e1531907536776.jpg");
INSERT INTO `wp_postmeta` VALUES("1727", "990", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:351;s:6:\"height\";i:263;s:4:\"file\";s:35:\"2018/07/IMG_7546-e1531907536776.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_7546-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_7546-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_7546-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_7546-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"IMG_7546-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:21:\"IMG_7546-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"IMG_7546-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:20:\"IMG_7546-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:21:\"IMG_7546-1080x810.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:20:\"IMG_7546-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:22:\"IMG_7546-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 4S\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1456765276\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.28\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:19:\"0.00097847358121331\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("93", "6", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("94", "6", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("1703", "6", "_yoast_wpseo_focuskw_text_input", "Commercial Design");
INSERT INTO `wp_postmeta` VALUES("96", "6", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"6\" /]");
INSERT INTO `wp_postmeta` VALUES("101", "61", "_wp_attached_file", "2018/04/Murray-Bridge-Racing-Club.jpg");
INSERT INTO `wp_postmeta` VALUES("102", "61", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1416;s:6:\"height\";i:1013;s:4:\"file\";s:37:\"2018/04/Murray-Bridge-Racing-Club.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Murray-Bridge-Racing-Club-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Murray-Bridge-Racing-Club-300x215.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"Murray-Bridge-Racing-Club-768x549.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:549;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"Murray-Bridge-Racing-Club-1024x733.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:733;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:37:\"Murray-Bridge-Racing-Club-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:38:\"Murray-Bridge-Racing-Club-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:37:\"Murray-Bridge-Racing-Club-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:37:\"Murray-Bridge-Racing-Club-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:38:\"Murray-Bridge-Racing-Club-1080x773.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:773;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:37:\"Murray-Bridge-Racing-Club-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1753", "998", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("1757", "1007", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:13:\"2018/07/1.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"1-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:13:\"1-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:14:\"1-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:13:\"1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:14:\"1-1024x675.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:13:\"1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:13:\"1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:13:\"1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("1730", "990", "_edit_lock", "1531907607:1");
INSERT INTO `wp_postmeta` VALUES("1731", "990", "_wp_attachment_backup_sizes", "a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:3264;s:6:\"height\";i:2448;s:4:\"file\";s:12:\"IMG_7546.jpg\";}}");
INSERT INTO `wp_postmeta` VALUES("1732", "989", "_edit_lock", "1531907534:1");
INSERT INTO `wp_postmeta` VALUES("1733", "989", "_wp_attachment_backup_sizes", "a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:3264;s:6:\"height\";i:2448;s:4:\"file\";s:12:\"IMG_3809.jpg\";}}");
INSERT INTO `wp_postmeta` VALUES("1734", "989", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1735", "989", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("1736", "985", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("1737", "985", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("1738", "985", "_et_pb_ab_subjects", "");
INSERT INTO `wp_postmeta` VALUES("1739", "985", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"985\" /]");
INSERT INTO `wp_postmeta` VALUES("1740", "993", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1741", "993", "_menu_item_menu_item_parent", "191");
INSERT INTO `wp_postmeta` VALUES("1742", "993", "_menu_item_object_id", "985");
INSERT INTO `wp_postmeta` VALUES("1743", "993", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1744", "993", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1745", "993", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1746", "993", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1747", "993", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1749", "988", "_edit_lock", "1531907605:1");
INSERT INTO `wp_postmeta` VALUES("1750", "988", "_wp_attachment_backup_sizes", "a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:3264;s:6:\"height\";i:2448;s:4:\"file\";s:12:\"IMG_3801.jpg\";}}");
INSERT INTO `wp_postmeta` VALUES("1756", "1007", "_wp_attached_file", "2018/07/1.jpg");
INSERT INTO `wp_postmeta` VALUES("1752", "998", "_et_pb_module_type", "et_pb_text");
INSERT INTO `wp_postmeta` VALUES("111", "78", "_wp_attached_file", "2018/04/Beyond-Ink-Logo-White-Transparent.png");
INSERT INTO `wp_postmeta` VALUES("112", "78", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1723;s:6:\"height\";i:382;s:4:\"file\";s:45:\"2018/04/Beyond-Ink-Logo-White-Transparent.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Beyond-Ink-Logo-White-Transparent-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Beyond-Ink-Logo-White-Transparent-300x67.png\";s:5:\"width\";i:300;s:6:\"height\";i:67;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"Beyond-Ink-Logo-White-Transparent-768x170.png\";s:5:\"width\";i:768;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Beyond-Ink-Logo-White-Transparent-1024x227.png\";s:5:\"width\";i:1024;s:6:\"height\";i:227;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:45:\"Beyond-Ink-Logo-White-Transparent-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:46:\"Beyond-Ink-Logo-White-Transparent-1080x382.png\";s:5:\"width\";i:1080;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:45:\"Beyond-Ink-Logo-White-Transparent-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:45:\"Beyond-Ink-Logo-White-Transparent-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:46:\"Beyond-Ink-Logo-White-Transparent-1080x239.png\";s:5:\"width\";i:1080;s:6:\"height\";i:239;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:45:\"Beyond-Ink-Logo-White-Transparent-400x382.png\";s:5:\"width\";i:400;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("117", "81", "_wp_attached_file", "2018/04/Murray-Bridge-Racing-Club-Website-Footer.jpg");
INSERT INTO `wp_postmeta` VALUES("118", "81", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2254;s:6:\"height\";i:763;s:4:\"file\";s:52:\"2018/04/Murray-Bridge-Racing-Club-Website-Footer.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"Murray-Bridge-Racing-Club-Website-Footer-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:52:\"Murray-Bridge-Racing-Club-Website-Footer-300x102.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:102;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:52:\"Murray-Bridge-Racing-Club-Website-Footer-768x260.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:53:\"Murray-Bridge-Racing-Club-Website-Footer-1024x347.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:347;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:52:\"Murray-Bridge-Racing-Club-Website-Footer-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:53:\"Murray-Bridge-Racing-Club-Website-Footer-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:52:\"Murray-Bridge-Racing-Club-Website-Footer-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:52:\"Murray-Bridge-Racing-Club-Website-Footer-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:53:\"Murray-Bridge-Racing-Club-Website-Footer-1080x366.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:52:\"Murray-Bridge-Racing-Club-Website-Footer-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("119", "82", "_wp_attached_file", "2018/04/Murray-Bridge-Racing-Club-Website-Footer-1.jpg");
INSERT INTO `wp_postmeta` VALUES("120", "82", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1992;s:6:\"height\";i:763;s:4:\"file\";s:54:\"2018/04/Murray-Bridge-Racing-Club-Website-Footer-1.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"Murray-Bridge-Racing-Club-Website-Footer-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"Murray-Bridge-Racing-Club-Website-Footer-1-300x115.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:115;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:54:\"Murray-Bridge-Racing-Club-Website-Footer-1-768x294.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:294;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:55:\"Murray-Bridge-Racing-Club-Website-Footer-1-1024x392.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:392;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:54:\"Murray-Bridge-Racing-Club-Website-Footer-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:55:\"Murray-Bridge-Racing-Club-Website-Footer-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:54:\"Murray-Bridge-Racing-Club-Website-Footer-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:54:\"Murray-Bridge-Racing-Club-Website-Footer-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:55:\"Murray-Bridge-Racing-Club-Website-Footer-1-1080x414.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:414;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:54:\"Murray-Bridge-Racing-Club-Website-Footer-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("121", "85", "_wp_attached_file", "2018/04/Murray-Bridge-Racing-Club-Website-Footer-2.jpg");
INSERT INTO `wp_postmeta` VALUES("122", "85", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1992;s:6:\"height\";i:658;s:4:\"file\";s:54:\"2018/04/Murray-Bridge-Racing-Club-Website-Footer-2.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"Murray-Bridge-Racing-Club-Website-Footer-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"Murray-Bridge-Racing-Club-Website-Footer-2-300x99.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:99;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:54:\"Murray-Bridge-Racing-Club-Website-Footer-2-768x254.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:55:\"Murray-Bridge-Racing-Club-Website-Footer-2-1024x338.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:54:\"Murray-Bridge-Racing-Club-Website-Footer-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:55:\"Murray-Bridge-Racing-Club-Website-Footer-2-1080x658.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:658;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:54:\"Murray-Bridge-Racing-Club-Website-Footer-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:54:\"Murray-Bridge-Racing-Club-Website-Footer-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:55:\"Murray-Bridge-Racing-Club-Website-Footer-2-1080x357.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:357;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:54:\"Murray-Bridge-Racing-Club-Website-Footer-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("123", "86", "_wp_attached_file", "2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg");
INSERT INTO `wp_postmeta` VALUES("124", "86", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1992;s:6:\"height\";i:752;s:4:\"file\";s:54:\"2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"Murray-Bridge-Racing-Club-Website-Footer-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"Murray-Bridge-Racing-Club-Website-Footer-3-300x113.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:54:\"Murray-Bridge-Racing-Club-Website-Footer-3-768x290.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:290;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:55:\"Murray-Bridge-Racing-Club-Website-Footer-3-1024x387.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:387;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:54:\"Murray-Bridge-Racing-Club-Website-Footer-3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:55:\"Murray-Bridge-Racing-Club-Website-Footer-3-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:54:\"Murray-Bridge-Racing-Club-Website-Footer-3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:54:\"Murray-Bridge-Racing-Club-Website-Footer-3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:55:\"Murray-Bridge-Racing-Club-Website-Footer-3-1080x408.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:54:\"Murray-Bridge-Racing-Club-Website-Footer-3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1663", "829", "_wp_attached_file", "2018/06/The-Lane-Feb-2015.jpg");
INSERT INTO `wp_postmeta` VALUES("1664", "829", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2568;s:6:\"height\";i:1093;s:4:\"file\";s:29:\"2018/06/The-Lane-Feb-2015.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"The-Lane-Feb-2015-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"The-Lane-Feb-2015-300x128.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:128;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"The-Lane-Feb-2015-768x327.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:327;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"The-Lane-Feb-2015-1024x436.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:436;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:29:\"The-Lane-Feb-2015-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:30:\"The-Lane-Feb-2015-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:29:\"The-Lane-Feb-2015-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:29:\"The-Lane-Feb-2015-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:30:\"The-Lane-Feb-2015-1080x460.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:460;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:29:\"The-Lane-Feb-2015-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPad mini\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1423579591\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"3.3\";s:3:\"iso\";s:2:\"32\";s:13:\"shutter_speed\";s:19:\"0.00066401062416999\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("132", "96", "_wp_attached_file", "2018/05/South-West-Corner-2-1280x705-e1525939024788.jpg");
INSERT INTO `wp_postmeta` VALUES("133", "96", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:705;s:4:\"file\";s:55:\"2018/05/South-West-Corner-2-1280x705-e1525939024788.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"South-West-Corner-2-1280x705-e1525939024788-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:55:\"South-West-Corner-2-1280x705-e1525939024788-300x165.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:165;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:55:\"South-West-Corner-2-1280x705-e1525939024788-768x423.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:56:\"South-West-Corner-2-1280x705-e1525939024788-1024x564.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:55:\"South-West-Corner-2-1280x705-e1525939024788-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:56:\"South-West-Corner-2-1280x705-e1525939024788-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:55:\"South-West-Corner-2-1280x705-e1525939024788-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:55:\"South-West-Corner-2-1280x705-e1525939024788-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:56:\"South-West-Corner-2-1280x705-e1525939024788-1080x595.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:595;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:55:\"South-West-Corner-2-1280x705-e1525939024788-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1525174434\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("134", "96", "_edit_lock", "1525938894:1");
INSERT INTO `wp_postmeta` VALUES("135", "96", "_wp_attachment_backup_sizes", "a:11:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1280;s:6:\"height\";i:705;s:4:\"file\";s:32:\"South-West-Corner-2-1280x705.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:40:\"South-West-Corner-2-1280x705-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:40:\"South-West-Corner-2-1280x705-300x165.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:165;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:40:\"South-West-Corner-2-1280x705-768x423.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:41:\"South-West-Corner-2-1280x705-1024x564.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"et-pb-post-main-image-orig\";a:4:{s:4:\"file\";s:40:\"South-West-Corner-2-1280x705-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:36:\"et-pb-post-main-image-fullwidth-orig\";a:4:{s:4:\"file\";s:41:\"South-West-Corner-2-1280x705-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"et-pb-portfolio-image-orig\";a:4:{s:4:\"file\";s:40:\"South-West-Corner-2-1280x705-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:33:\"et-pb-portfolio-module-image-orig\";a:4:{s:4:\"file\";s:40:\"South-West-Corner-2-1280x705-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:33:\"et-pb-portfolio-image-single-orig\";a:4:{s:4:\"file\";s:41:\"South-West-Corner-2-1280x705-1080x595.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:595;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:40:\"et-pb-gallery-module-image-portrait-orig\";a:4:{s:4:\"file\";s:40:\"South-West-Corner-2-1280x705-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}");
INSERT INTO `wp_postmeta` VALUES("136", "96", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("137", "96", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("138", "102", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("139", "102", "_edit_lock", "1531912399:1");
INSERT INTO `wp_postmeta` VALUES("1682", "917", "_wp_attached_file", "2018/07/Kensingtons-Garden-Residence.jpg");
INSERT INTO `wp_postmeta` VALUES("1683", "917", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:456;s:6:\"height\";i:342;s:4:\"file\";s:40:\"2018/07/Kensingtons-Garden-Residence.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Kensingtons-Garden-Residence-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Kensingtons-Garden-Residence-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"Kensingtons-Garden-Residence-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"Kensingtons-Garden-Residence-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"Kensingtons-Garden-Residence-400x342.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("142", "102", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("143", "102", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("144", "102", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("145", "102", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("146", "102", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("147", "102", "_et_builder_version", "VB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("148", "102", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("149", "102", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("150", "102", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("151", "102", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("152", "102", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("153", "102", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("154", "102", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("155", "102", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("156", "102", "_et_pb_ab_subjects", "");
INSERT INTO `wp_postmeta` VALUES("157", "102", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"102\" /]");
INSERT INTO `wp_postmeta` VALUES("158", "109", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("159", "109", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("160", "109", "_menu_item_object_id", "102");
INSERT INTO `wp_postmeta` VALUES("161", "109", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("162", "109", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("163", "109", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("164", "109", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("165", "109", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("167", "119", "_wp_attached_file", "2018/05/Beyond-Ink-Logo-Sq.jpg");
INSERT INTO `wp_postmeta` VALUES("168", "119", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1723;s:6:\"height\";i:1723;s:4:\"file\";s:30:\"2018/05/Beyond-Ink-Logo-Sq.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Beyond-Ink-Logo-Sq-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:\"Beyond-Ink-Logo-Sq-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"Beyond-Ink-Logo-Sq-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"Beyond-Ink-Logo-Sq-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"Beyond-Ink-Logo-Sq-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:31:\"Beyond-Ink-Logo-Sq-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"Beyond-Ink-Logo-Sq-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"Beyond-Ink-Logo-Sq-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:32:\"Beyond-Ink-Logo-Sq-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"Beyond-Ink-Logo-Sq-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("169", "120", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("170", "120", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("171", "120", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("172", "120", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("173", "120", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("174", "120", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("175", "120", "_et_builder_version", "VB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("176", "120", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("177", "120", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("178", "120", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("179", "120", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("180", "120", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("181", "120", "_edit_lock", "1531912277:1");
INSERT INTO `wp_postmeta` VALUES("1694", "955", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("1684", "918", "_wp_attached_file", "2018/07/Hahndorf-Academy.jpg");
INSERT INTO `wp_postmeta` VALUES("1685", "918", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:456;s:6:\"height\";i:342;s:4:\"file\";s:28:\"2018/07/Hahndorf-Academy.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Hahndorf-Academy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Hahndorf-Academy-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"Hahndorf-Academy-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"Hahndorf-Academy-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"Hahndorf-Academy-400x342.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1686", "919", "_wp_attached_file", "2018/07/Murray-Bridge-Racing-Club.jpg");
INSERT INTO `wp_postmeta` VALUES("1687", "919", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:456;s:6:\"height\";i:342;s:4:\"file\";s:37:\"2018/07/Murray-Bridge-Racing-Club.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Murray-Bridge-Racing-Club-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Murray-Bridge-Racing-Club-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:37:\"Murray-Bridge-Racing-Club-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:37:\"Murray-Bridge-Racing-Club-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:37:\"Murray-Bridge-Racing-Club-400x342.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1688", "924", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("1689", "925", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("1690", "943", "_wp_attached_file", "2018/07/Carrickalinga-House.jpg");
INSERT INTO `wp_postmeta` VALUES("1691", "943", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1183;s:4:\"file\";s:31:\"2018/07/Carrickalinga-House.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Carrickalinga-House-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:\"Carrickalinga-House-300x222.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"Carrickalinga-House-768x568.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:568;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"Carrickalinga-House-1024x757.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:757;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"Carrickalinga-House-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:32:\"Carrickalinga-House-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"Carrickalinga-House-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:31:\"Carrickalinga-House-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:32:\"Carrickalinga-House-1080x799.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:799;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:31:\"Carrickalinga-House-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1692", "951", "_wp_attached_file", "2018/07/IMG_6211-1280x853.jpg");
INSERT INTO `wp_postmeta` VALUES("1693", "951", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:29:\"2018/07/IMG_6211-1280x853.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"IMG_6211-1280x853-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"IMG_6211-1280x853-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"IMG_6211-1280x853-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"IMG_6211-1280x853-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:29:\"IMG_6211-1280x853-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:30:\"IMG_6211-1280x853-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:29:\"IMG_6211-1280x853-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:29:\"IMG_6211-1280x853-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:30:\"IMG_6211-1280x853-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:29:\"IMG_6211-1280x853-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:29:\"www.facebook.com/kensohstudio\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1477492020\";s:9:\"copyright\";s:29:\"www.facebook.com/kensohstudio\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1713", "985", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("1712", "985", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("1711", "985", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("1710", "985", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("1709", "985", "_edit_lock", "1531907153:1");
INSERT INTO `wp_postmeta` VALUES("1708", "985", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1677", "899", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("1678", "901", "_et_pb_row_layout", "4_4");
INSERT INTO `wp_postmeta` VALUES("1679", "901", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("1680", "915", "_wp_attached_file", "2018/07/North-East-Corner-Dulux-Gunmetal-Kinetic-1280x406.jpg");
INSERT INTO `wp_postmeta` VALUES("1681", "915", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:406;s:4:\"file\";s:61:\"2018/07/North-East-Corner-Dulux-Gunmetal-Kinetic-1280x406.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"North-East-Corner-Dulux-Gunmetal-Kinetic-1280x406-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:60:\"North-East-Corner-Dulux-Gunmetal-Kinetic-1280x406-300x95.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:95;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:61:\"North-East-Corner-Dulux-Gunmetal-Kinetic-1280x406-768x244.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:244;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"North-East-Corner-Dulux-Gunmetal-Kinetic-1280x406-1024x325.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:61:\"North-East-Corner-Dulux-Gunmetal-Kinetic-1280x406-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:62:\"North-East-Corner-Dulux-Gunmetal-Kinetic-1280x406-1080x406.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:406;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:61:\"North-East-Corner-Dulux-Gunmetal-Kinetic-1280x406-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:61:\"North-East-Corner-Dulux-Gunmetal-Kinetic-1280x406-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:62:\"North-East-Corner-Dulux-Gunmetal-Kinetic-1280x406-1080x343.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:61:\"North-East-Corner-Dulux-Gunmetal-Kinetic-1280x406-400x406.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:406;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("194", "120", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("195", "120", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("196", "120", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("1761", "120", "_yoast_wpseo_focuskw_text_input", "Commercial and residential projects");
INSERT INTO `wp_postmeta` VALUES("198", "120", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"120\" /]");
INSERT INTO `wp_postmeta` VALUES("199", "132", "_wp_attached_file", "2018/05/Murray-Bridge-Racing-Club.jpg");
INSERT INTO `wp_postmeta` VALUES("200", "132", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1416;s:6:\"height\";i:1013;s:4:\"file\";s:37:\"2018/05/Murray-Bridge-Racing-Club.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Murray-Bridge-Racing-Club-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Murray-Bridge-Racing-Club-300x215.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"Murray-Bridge-Racing-Club-768x549.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:549;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"Murray-Bridge-Racing-Club-1024x733.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:733;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:37:\"Murray-Bridge-Racing-Club-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:38:\"Murray-Bridge-Racing-Club-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:37:\"Murray-Bridge-Racing-Club-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:37:\"Murray-Bridge-Racing-Club-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:38:\"Murray-Bridge-Racing-Club-1080x773.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:773;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:37:\"Murray-Bridge-Racing-Club-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("856", "409", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:28:\"2018/06/IMG_3605-800x600.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_3605-800x600-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_3605-800x600-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:28:\"IMG_3605-800x600-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_3605-800x600-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_3605-800x600-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_3605-800x600-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_3605-800x600-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"iPhone 6 Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1434555747\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"32\";s:13:\"shutter_speed\";s:19:\"0.00068306010928962\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("855", "409", "_wp_attached_file", "2018/06/IMG_3605-800x600.jpg");
INSERT INTO `wp_postmeta` VALUES("205", "137", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("206", "137", "_edit_lock", "1531912348:1");
INSERT INTO `wp_postmeta` VALUES("207", "138", "_wp_attached_file", "2018/05/5-2.jpg");
INSERT INTO `wp_postmeta` VALUES("208", "138", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1183;s:4:\"file\";s:15:\"2018/05/5-2.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"5-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"5-2-300x222.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"5-2-768x568.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:568;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"5-2-1024x757.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:757;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:15:\"5-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:16:\"5-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:15:\"5-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:15:\"5-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:16:\"5-2-1080x799.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:799;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:15:\"5-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("209", "138", "_wp_attachment_image_alt", "Beyond Ink Renovations");
INSERT INTO `wp_postmeta` VALUES("210", "140", "_wp_attached_file", "2018/05/5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("211", "140", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:63:\"2018/05/5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515679404\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("212", "140", "_wp_attachment_image_alt", "Beyond Ink Residential Projects");
INSERT INTO `wp_postmeta` VALUES("213", "141", "_wp_attached_file", "2018/05/Front-Entry-Portal-Dulux-Gunmetal-Kinetic-800x410.jpg");
INSERT INTO `wp_postmeta` VALUES("214", "141", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:410;s:4:\"file\";s:61:\"2018/05/Front-Entry-Portal-Dulux-Gunmetal-Kinetic-800x410.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"Front-Entry-Portal-Dulux-Gunmetal-Kinetic-800x410-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"Front-Entry-Portal-Dulux-Gunmetal-Kinetic-800x410-300x154.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:61:\"Front-Entry-Portal-Dulux-Gunmetal-Kinetic-800x410-768x394.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:394;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:61:\"Front-Entry-Portal-Dulux-Gunmetal-Kinetic-800x410-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:61:\"Front-Entry-Portal-Dulux-Gunmetal-Kinetic-800x410-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:61:\"Front-Entry-Portal-Dulux-Gunmetal-Kinetic-800x410-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:61:\"Front-Entry-Portal-Dulux-Gunmetal-Kinetic-800x410-400x410.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1485184020\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("215", "132", "_wp_attachment_image_alt", "Beyond Ink Commercial Projects");
INSERT INTO `wp_postmeta` VALUES("216", "141", "_wp_attachment_image_alt", "Beyond Ink Commercial Projects");
INSERT INTO `wp_postmeta` VALUES("217", "142", "_wp_attached_file", "2018/05/Front-Entry-Portal-Dulux-Gunmetal-Kinetic-800x410-1.jpg");
INSERT INTO `wp_postmeta` VALUES("218", "142", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:638;s:6:\"height\";i:408;s:4:\"file\";s:63:\"2018/05/Front-Entry-Portal-Dulux-Gunmetal-Kinetic-800x410-1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"Front-Entry-Portal-Dulux-Gunmetal-Kinetic-800x410-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"Front-Entry-Portal-Dulux-Gunmetal-Kinetic-800x410-1-300x192.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:63:\"Front-Entry-Portal-Dulux-Gunmetal-Kinetic-800x410-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:63:\"Front-Entry-Portal-Dulux-Gunmetal-Kinetic-800x410-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:63:\"Front-Entry-Portal-Dulux-Gunmetal-Kinetic-800x410-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:63:\"Front-Entry-Portal-Dulux-Gunmetal-Kinetic-800x410-1-400x408.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:408;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1485184020\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("219", "144", "_wp_attached_file", "2018/05/Front-Entry-Portal-Dulux-Gunmetal-Kinetic-2.jpg");
INSERT INTO `wp_postmeta` VALUES("220", "144", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1183;s:4:\"file\";s:55:\"2018/05/Front-Entry-Portal-Dulux-Gunmetal-Kinetic-2.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"Front-Entry-Portal-Dulux-Gunmetal-Kinetic-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"Front-Entry-Portal-Dulux-Gunmetal-Kinetic-2-300x222.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:55:\"Front-Entry-Portal-Dulux-Gunmetal-Kinetic-2-768x568.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:568;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:56:\"Front-Entry-Portal-Dulux-Gunmetal-Kinetic-2-1024x757.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:757;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:55:\"Front-Entry-Portal-Dulux-Gunmetal-Kinetic-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:56:\"Front-Entry-Portal-Dulux-Gunmetal-Kinetic-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:55:\"Front-Entry-Portal-Dulux-Gunmetal-Kinetic-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:55:\"Front-Entry-Portal-Dulux-Gunmetal-Kinetic-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:56:\"Front-Entry-Portal-Dulux-Gunmetal-Kinetic-2-1080x799.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:799;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:55:\"Front-Entry-Portal-Dulux-Gunmetal-Kinetic-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("221", "144", "_wp_attachment_image_alt", "Beyond Ink Commercial Projects");
INSERT INTO `wp_postmeta` VALUES("222", "146", "_wp_attached_file", "2018/05/North-East-Corner-Dulux-Gunmetal-Kinetic-Sm.jpg");
INSERT INTO `wp_postmeta` VALUES("223", "146", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1183;s:4:\"file\";s:55:\"2018/05/North-East-Corner-Dulux-Gunmetal-Kinetic-Sm.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"North-East-Corner-Dulux-Gunmetal-Kinetic-Sm-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:55:\"North-East-Corner-Dulux-Gunmetal-Kinetic-Sm-300x222.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:55:\"North-East-Corner-Dulux-Gunmetal-Kinetic-Sm-768x568.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:568;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:56:\"North-East-Corner-Dulux-Gunmetal-Kinetic-Sm-1024x757.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:757;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:55:\"North-East-Corner-Dulux-Gunmetal-Kinetic-Sm-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:56:\"North-East-Corner-Dulux-Gunmetal-Kinetic-Sm-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:55:\"North-East-Corner-Dulux-Gunmetal-Kinetic-Sm-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:55:\"North-East-Corner-Dulux-Gunmetal-Kinetic-Sm-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:56:\"North-East-Corner-Dulux-Gunmetal-Kinetic-Sm-1080x799.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:799;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:55:\"North-East-Corner-Dulux-Gunmetal-Kinetic-Sm-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("224", "146", "_wp_attachment_image_alt", "Beyond Ink Commercial Projects");
INSERT INTO `wp_postmeta` VALUES("225", "151", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("226", "151", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("227", "151", "_menu_item_object_id", "120");
INSERT INTO `wp_postmeta` VALUES("228", "151", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("229", "151", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("230", "151", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("231", "151", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("232", "151", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("234", "152", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("235", "152", "_edit_lock", "1531912641:1");
INSERT INTO `wp_postmeta` VALUES("236", "153", "_wp_attached_file", "2018/05/living_01.jpg");
INSERT INTO `wp_postmeta` VALUES("237", "153", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:961;s:4:\"file\";s:21:\"2018/05/living_01.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"living_01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"living_01-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"living_01-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"living_01-1024x513.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"living_01-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:22:\"living_01-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"living_01-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"living_01-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:22:\"living_01-1080x541.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:541;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"living_01-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("238", "152", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("239", "152", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("240", "152", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("241", "152", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("242", "152", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("243", "152", "_et_builder_version", "VB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("244", "152", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("245", "152", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("246", "152", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("247", "152", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("248", "152", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("249", "152", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("250", "156", "_wp_attached_file", "2018/05/155971_443885748980411_2052228216_n.jpg");
INSERT INTO `wp_postmeta` VALUES("251", "156", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:531;s:4:\"file\";s:47:\"2018/05/155971_443885748980411_2052228216_n.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"155971_443885748980411_2052228216_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"155971_443885748980411_2052228216_n-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"155971_443885748980411_2052228216_n-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:47:\"155971_443885748980411_2052228216_n-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:47:\"155971_443885748980411_2052228216_n-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:47:\"155971_443885748980411_2052228216_n-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:47:\"155971_443885748980411_2052228216_n-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("252", "156", "_wp_attachment_image_alt", "Beyond Ink, Residential and Commercial Builders and Designers");
INSERT INTO `wp_postmeta` VALUES("264", "159", "_wp_attachment_image_alt", "Beyond Ink, Residential and Commercial Builders and Designers");
INSERT INTO `wp_postmeta` VALUES("265", "160", "_wp_attached_file", "2018/05/6.jpg");
INSERT INTO `wp_postmeta` VALUES("266", "160", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:536;s:4:\"file\";s:13:\"2018/05/6.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"6-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"6-768x515.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:515;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:13:\"6-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:13:\"6-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:13:\"6-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:13:\"6-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("263", "159", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:525;s:4:\"file\";s:47:\"2018/05/425573_318529888182665_1787921071_n.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"425573_318529888182665_1787921071_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"425573_318529888182665_1787921071_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:47:\"425573_318529888182665_1787921071_n-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:47:\"425573_318529888182665_1787921071_n-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:47:\"425573_318529888182665_1787921071_n-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:47:\"425573_318529888182665_1787921071_n-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("262", "159", "_wp_attached_file", "2018/05/425573_318529888182665_1787921071_n.jpg");
INSERT INTO `wp_postmeta` VALUES("261", "158", "_wp_attachment_image_alt", "Beyond Ink, Residential and Commercial Builders and Designers");
INSERT INTO `wp_postmeta` VALUES("259", "158", "_wp_attached_file", "2018/05/5-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("260", "158", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:21:\"2018/05/5-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"5-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"5-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"5-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"5-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"5-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"5-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"5-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1329217861\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("267", "160", "_wp_attachment_image_alt", "Beyond Ink, Residential and Commercial Builders and Designers");
INSERT INTO `wp_postmeta` VALUES("268", "161", "_wp_attached_file", "2018/05/lt-1-1P2147-1511431005-rsd-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("269", "161", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:46:\"2018/05/lt-1-1P2147-1511431005-rsd-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"lt-1-1P2147-1511431005-rsd-800x533-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:46:\"lt-1-1P2147-1511431005-rsd-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"lt-1-1P2147-1511431005-rsd-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"lt-1-1P2147-1511431005-rsd-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"lt-1-1P2147-1511431005-rsd-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"lt-1-1P2147-1511431005-rsd-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"lt-1-1P2147-1511431005-rsd-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("270", "161", "_wp_attachment_image_alt", "Beyond Ink, Residential and Commercial Builders and Designers");
INSERT INTO `wp_postmeta` VALUES("271", "162", "_wp_attached_file", "2018/05/305653_359854987383488_1833829054_n.jpg");
INSERT INTO `wp_postmeta` VALUES("272", "162", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:525;s:4:\"file\";s:47:\"2018/05/305653_359854987383488_1833829054_n.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"305653_359854987383488_1833829054_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"305653_359854987383488_1833829054_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:47:\"305653_359854987383488_1833829054_n-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:47:\"305653_359854987383488_1833829054_n-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:47:\"305653_359854987383488_1833829054_n-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:47:\"305653_359854987383488_1833829054_n-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("273", "162", "_wp_attachment_image_alt", "Beyond Ink, Residential and Commercial Builders and Designers");
INSERT INTO `wp_postmeta` VALUES("274", "163", "_wp_attached_file", "2018/05/Bell-Crt-4.jpg");
INSERT INTO `wp_postmeta` VALUES("275", "163", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:531;s:4:\"file\";s:22:\"2018/05/Bell-Crt-4.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Bell-Crt-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Bell-Crt-4-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"Bell-Crt-4-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"Bell-Crt-4-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"Bell-Crt-4-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:22:\"Bell-Crt-4-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:22:\"Bell-Crt-4-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("276", "163", "_wp_attachment_image_alt", "Beyond Ink, Residential and Commercial Builders and Designers");
INSERT INTO `wp_postmeta` VALUES("277", "164", "_wp_attached_file", "2018/05/399949_317440688291585_1511337278_n.jpg");
INSERT INTO `wp_postmeta` VALUES("278", "164", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:525;s:4:\"file\";s:47:\"2018/05/399949_317440688291585_1511337278_n.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"399949_317440688291585_1511337278_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"399949_317440688291585_1511337278_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:47:\"399949_317440688291585_1511337278_n-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:47:\"399949_317440688291585_1511337278_n-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:47:\"399949_317440688291585_1511337278_n-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:47:\"399949_317440688291585_1511337278_n-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("279", "164", "_wp_attachment_image_alt", "Beyond Ink, Residential and Commercial Builders and Designers");
INSERT INTO `wp_postmeta` VALUES("280", "165", "_wp_attached_file", "2018/05/IMG_0623-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("281", "165", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:28:\"2018/05/IMG_0623-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_0623-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_0623-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"IMG_0623-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_0623-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_0623-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_0623-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_0623-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1334849424\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"21\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("282", "165", "_wp_attachment_image_alt", "Beyond Ink, Residential and Commercial Builders and Designers");
INSERT INTO `wp_postmeta` VALUES("1665", "851", "_wp_attached_file", "2018/06/Front-Entry-Portal-Dulux-Gunmetal-Kinetic-800x410.jpg");
INSERT INTO `wp_postmeta` VALUES("1666", "851", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:638;s:6:\"height\";i:408;s:4:\"file\";s:61:\"2018/06/Front-Entry-Portal-Dulux-Gunmetal-Kinetic-800x410.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"Front-Entry-Portal-Dulux-Gunmetal-Kinetic-800x410-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"Front-Entry-Portal-Dulux-Gunmetal-Kinetic-800x410-300x192.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:61:\"Front-Entry-Portal-Dulux-Gunmetal-Kinetic-800x410-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:61:\"Front-Entry-Portal-Dulux-Gunmetal-Kinetic-800x410-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:61:\"Front-Entry-Portal-Dulux-Gunmetal-Kinetic-800x410-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:61:\"Front-Entry-Portal-Dulux-Gunmetal-Kinetic-800x410-400x408.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:408;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1485184020\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("286", "152", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("287", "152", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("1771", "152", "_yoast_wpseo_focuskw_text_input", "Residential design");
INSERT INTO `wp_postmeta` VALUES("289", "152", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"152\" /]");
INSERT INTO `wp_postmeta` VALUES("290", "169", "_wp_attached_file", "2018/05/5-Atkinson-Exterior-4-of-6-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("291", "169", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:46:\"2018/05/5-Atkinson-Exterior-4-of-6-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"5-Atkinson-Exterior-4-of-6-800x535-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:46:\"5-Atkinson-Exterior-4-of-6-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"5-Atkinson-Exterior-4-of-6-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"5-Atkinson-Exterior-4-of-6-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"5-Atkinson-Exterior-4-of-6-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"5-Atkinson-Exterior-4-of-6-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"5-Atkinson-Exterior-4-of-6-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381514712\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("292", "169", "_wp_attachment_image_alt", "Beyond Ink, Residential and Commercial Builders and Designers");
INSERT INTO `wp_postmeta` VALUES("293", "170", "_wp_attached_file", "2018/05/5-Bennett-Street-Carrickalinga_HighRes_4K_3-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("294", "170", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:63:\"2018/05/5-Bennett-Street-Carrickalinga_HighRes_4K_3-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_3-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_3-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_3-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_3-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_3-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_3-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_3-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515679856\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"33\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("295", "170", "_wp_attachment_image_alt", "Beyond Ink, Residential and Commercial Builders and Designers");
INSERT INTO `wp_postmeta` VALUES("296", "172", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("297", "172", "_menu_item_menu_item_parent", "151");
INSERT INTO `wp_postmeta` VALUES("298", "172", "_menu_item_object_id", "152");
INSERT INTO `wp_postmeta` VALUES("299", "172", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("300", "172", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("301", "172", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("302", "172", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("303", "172", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("305", "173", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("306", "175", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("307", "175", "_edit_lock", "1531912541:1");
INSERT INTO `wp_postmeta` VALUES("308", "175", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("309", "175", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("310", "175", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("311", "175", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("312", "175", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("313", "175", "_et_builder_version", "VB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("314", "175", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("315", "175", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("316", "175", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("317", "175", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("318", "175", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("319", "175", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("320", "177", "_wp_attached_file", "2018/05/The-Lane-Feb-2015-800x340.jpg");
INSERT INTO `wp_postmeta` VALUES("321", "177", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:340;s:4:\"file\";s:37:\"2018/05/The-Lane-Feb-2015-800x340.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"The-Lane-Feb-2015-800x340-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"The-Lane-Feb-2015-800x340-300x128.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:128;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"The-Lane-Feb-2015-800x340-768x326.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:326;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:37:\"The-Lane-Feb-2015-800x340-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:37:\"The-Lane-Feb-2015-800x340-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:37:\"The-Lane-Feb-2015-800x340-510x340.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:37:\"The-Lane-Feb-2015-800x340-400x340.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPad mini\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1423579591\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"3.3\";s:3:\"iso\";s:2:\"32\";s:13:\"shutter_speed\";s:19:\"0.00066401062416999\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("322", "177", "_wp_attachment_image_alt", "Beyond Ink, Commercial Builders and Designers");
INSERT INTO `wp_postmeta` VALUES("323", "96", "_wp_attachment_image_alt", "Beyond Ink, Residential and Commercial Builders and Designers");
INSERT INTO `wp_postmeta` VALUES("324", "179", "_wp_attached_file", "2018/05/IMG_3605-800x600.jpg");
INSERT INTO `wp_postmeta` VALUES("325", "179", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:28:\"2018/05/IMG_3605-800x600.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_3605-800x600-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_3605-800x600-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:28:\"IMG_3605-800x600-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_3605-800x600-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_3605-800x600-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_3605-800x600-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_3605-800x600-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"iPhone 6 Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1434555747\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"32\";s:13:\"shutter_speed\";s:19:\"0.00068306010928962\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("326", "180", "_wp_attached_file", "2018/05/K1-2.jpg");
INSERT INTO `wp_postmeta` VALUES("327", "180", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1476;s:6:\"height\";i:1096;s:4:\"file\";s:16:\"2018/05/K1-2.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"K1-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"K1-2-300x223.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:223;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"K1-2-768x570.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"K1-2-1024x760.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:760;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:16:\"K1-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:17:\"K1-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:16:\"K1-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:16:\"K1-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:17:\"K1-2-1080x802.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:16:\"K1-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("328", "181", "_wp_attached_file", "2018/05/5-2-1.jpg");
INSERT INTO `wp_postmeta` VALUES("329", "181", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1183;s:4:\"file\";s:17:\"2018/05/5-2-1.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"5-2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"5-2-1-300x222.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"5-2-1-768x568.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:568;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"5-2-1-1024x757.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:757;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:17:\"5-2-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:18:\"5-2-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:17:\"5-2-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:17:\"5-2-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:18:\"5-2-1-1080x799.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:799;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:17:\"5-2-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("330", "182", "_wp_attached_file", "2018/05/Barker-Plaza-Entrance-800x534.jpg");
INSERT INTO `wp_postmeta` VALUES("331", "182", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:534;s:4:\"file\";s:41:\"2018/05/Barker-Plaza-Entrance-800x534.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Barker-Plaza-Entrance-800x534-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Barker-Plaza-Entrance-800x534-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"Barker-Plaza-Entrance-800x534-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"Barker-Plaza-Entrance-800x534-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"Barker-Plaza-Entrance-800x534-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"Barker-Plaza-Entrance-800x534-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"Barker-Plaza-Entrance-800x534-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D800\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1456859221\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"21\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("332", "183", "_wp_attached_file", "2018/05/img_2879.jpg");
INSERT INTO `wp_postmeta` VALUES("333", "183", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:521;s:6:\"height\";i:391;s:4:\"file\";s:20:\"2018/05/img_2879.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"img_2879-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_2879-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"img_2879-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"img_2879-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:20:\"img_2879-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:20:\"img_2879-400x391.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:391;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:19:\"Canon PowerShot A75\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1143222887\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:7:\"9.40625\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("334", "184", "_wp_attached_file", "2018/05/img_26711.jpg");
INSERT INTO `wp_postmeta` VALUES("335", "184", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:490;s:4:\"file\";s:21:\"2018/05/img_26711.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"img_26711-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"img_26711-300x210.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"img_26711-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"img_26711-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"img_26711-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"img_26711-400x490.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:490;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1370265197\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("336", "185", "_wp_attached_file", "2018/05/55708_165645590125507_7049646_o.jpg");
INSERT INTO `wp_postmeta` VALUES("337", "185", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:466;s:4:\"file\";s:43:\"2018/05/55708_165645590125507_7049646_o.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"55708_165645590125507_7049646_o-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:43:\"55708_165645590125507_7049646_o-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"55708_165645590125507_7049646_o-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"55708_165645590125507_7049646_o-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"55708_165645590125507_7049646_o-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"55708_165645590125507_7049646_o-400x466.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:466;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("338", "186", "_wp_attached_file", "2018/05/Pulteney-Plaza-800x600.jpg");
INSERT INTO `wp_postmeta` VALUES("339", "186", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:34:\"2018/05/Pulteney-Plaza-800x600.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Pulteney-Plaza-800x600-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Pulteney-Plaza-800x600-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:34:\"Pulteney-Plaza-800x600-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"Pulteney-Plaza-800x600-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"Pulteney-Plaza-800x600-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"Pulteney-Plaza-800x600-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"Pulteney-Plaza-800x600-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:19:\"Canon PowerShot A75\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1178624351\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:7:\"5.40625\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:5:\"0.002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("340", "187", "_wp_attached_file", "2018/05/imported-08-02-2015-1087.jpg");
INSERT INTO `wp_postmeta` VALUES("341", "187", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:525;s:6:\"height\";i:394;s:4:\"file\";s:36:\"2018/05/imported-08-02-2015-1087.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"imported-08-02-2015-1087-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:\"imported-08-02-2015-1087-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"imported-08-02-2015-1087-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"imported-08-02-2015-1087-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"imported-08-02-2015-1087-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"imported-08-02-2015-1087-400x394.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:394;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 4S\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1423302978\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.28\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:19:\"0.00036205648081101\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("342", "188", "_wp_attached_file", "2018/05/img_3053.jpg");
INSERT INTO `wp_postmeta` VALUES("343", "188", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:525;s:4:\"file\";s:20:\"2018/05/img_3053.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"img_3053-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_3053-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"img_3053-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"img_3053-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:20:\"img_3053-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:20:\"img_3053-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 4S\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1447236637\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.28\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:19:\"0.00034399724802202\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("344", "179", "_wp_attachment_image_alt", "Beyond Ink, Commercial Designers, Project Managers, Builders, Architects");
INSERT INTO `wp_postmeta` VALUES("345", "180", "_wp_attachment_image_alt", "Beyond Ink, Commercial Designers, Project Managers, Builders, Architects");
INSERT INTO `wp_postmeta` VALUES("346", "181", "_wp_attachment_image_alt", "Beyond Ink, Commercial Designers, Project Managers, Builders, Architects");
INSERT INTO `wp_postmeta` VALUES("347", "182", "_wp_attachment_image_alt", "Beyond Ink, Commercial Designers, Project Managers, Builders, Architects");
INSERT INTO `wp_postmeta` VALUES("348", "183", "_wp_attachment_image_alt", "Beyond Ink, Commercial Designers, Project Managers, Builders, Architects");
INSERT INTO `wp_postmeta` VALUES("349", "184", "_wp_attachment_image_alt", "Beyond Ink, Commercial Designers, Project Managers, Builders, Architects");
INSERT INTO `wp_postmeta` VALUES("350", "185", "_wp_attachment_image_alt", "Beyond Ink, Commercial Designers, Project Managers, Builders, Architects");
INSERT INTO `wp_postmeta` VALUES("351", "186", "_wp_attachment_image_alt", "Beyond Ink, Commercial Designers, Project Managers, Builders, Architects");
INSERT INTO `wp_postmeta` VALUES("352", "187", "_wp_attachment_image_alt", "Beyond Ink, Commercial Designers, Project Managers, Builders, Architects");
INSERT INTO `wp_postmeta` VALUES("353", "188", "_wp_attachment_image_alt", "Beyond Ink, Commercial Designers, Project Managers, Builders, Architects");
INSERT INTO `wp_postmeta` VALUES("354", "175", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("355", "175", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("1766", "175", "_yoast_wpseo_focuskw_text_input", "Commercial building design");
INSERT INTO `wp_postmeta` VALUES("357", "175", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"175\" /]");
INSERT INTO `wp_postmeta` VALUES("358", "191", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("359", "191", "_menu_item_menu_item_parent", "151");
INSERT INTO `wp_postmeta` VALUES("360", "191", "_menu_item_object_id", "175");
INSERT INTO `wp_postmeta` VALUES("361", "191", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("362", "191", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("363", "191", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("364", "191", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("365", "191", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("367", "192", "_wp_attached_file", "2018/05/5-Atkinson-Exterior-3-of-6-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("368", "192", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:46:\"2018/05/5-Atkinson-Exterior-3-of-6-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"5-Atkinson-Exterior-3-of-6-800x535-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:46:\"5-Atkinson-Exterior-3-of-6-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"5-Atkinson-Exterior-3-of-6-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"5-Atkinson-Exterior-3-of-6-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"5-Atkinson-Exterior-3-of-6-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"5-Atkinson-Exterior-3-of-6-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"5-Atkinson-Exterior-3-of-6-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381514614\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("369", "192", "_wp_attachment_image_alt", "Beyond Ink, Residential and Commercial Builders and Designers");
INSERT INTO `wp_postmeta` VALUES("370", "195", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("371", "195", "_edit_lock", "1531912974:1");
INSERT INTO `wp_postmeta` VALUES("372", "195", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("373", "195", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("374", "195", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("375", "195", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("376", "195", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("377", "195", "_et_builder_version", "VB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("378", "195", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("379", "195", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("380", "195", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("381", "195", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("382", "195", "_yoast_wpseo_content_score", "90");
INSERT INTO `wp_postmeta` VALUES("383", "195", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("384", "199", "_wp_attached_file", "2018/05/South-West-Corner-2-800x441.jpg");
INSERT INTO `wp_postmeta` VALUES("385", "199", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:441;s:4:\"file\";s:39:\"2018/05/South-West-Corner-2-800x441.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"South-West-Corner-2-800x441-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"South-West-Corner-2-800x441-300x165.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:165;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"South-West-Corner-2-800x441-768x423.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"South-West-Corner-2-800x441-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"South-West-Corner-2-800x441-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"South-West-Corner-2-800x441-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"South-West-Corner-2-800x441-400x441.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1525174434\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("386", "199", "_wp_attachment_image_alt", "Beyond Ink Commercial Projects - Murray Bridge Racing Club");
INSERT INTO `wp_postmeta` VALUES("387", "200", "_wp_attached_file", "2018/05/BAR-1-800x362.jpg");
INSERT INTO `wp_postmeta` VALUES("388", "200", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:362;s:4:\"file\";s:25:\"2018/05/BAR-1-800x362.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"BAR-1-800x362-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"BAR-1-800x362-300x136.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:136;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"BAR-1-800x362-768x348.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:348;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:25:\"BAR-1-800x362-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:25:\"BAR-1-800x362-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:25:\"BAR-1-800x362-510x362.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:362;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:25:\"BAR-1-800x362-400x362.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:362;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1490815472\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("389", "200", "_wp_attachment_image_alt", "Beyond Ink Commercial Projects - Murray Bridge Racing Club");
INSERT INTO `wp_postmeta` VALUES("390", "201", "_wp_attached_file", "2018/05/Main-Foyer-800x480.jpg");
INSERT INTO `wp_postmeta` VALUES("391", "201", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:480;s:4:\"file\";s:30:\"2018/05/Main-Foyer-800x480.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Main-Foyer-800x480-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:\"Main-Foyer-800x480-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"Main-Foyer-800x480-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"Main-Foyer-800x480-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"Main-Foyer-800x480-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"Main-Foyer-800x480-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"Main-Foyer-800x480-400x480.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1490813548\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("392", "201", "_wp_attachment_image_alt", "");
INSERT INTO `wp_postmeta` VALUES("393", "195", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("394", "195", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("1781", "195", "_yoast_wpseo_focuskw_text_input", "Beyond Ink");
INSERT INTO `wp_postmeta` VALUES("396", "195", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"195\" /]");
INSERT INTO `wp_postmeta` VALUES("397", "203", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("398", "203", "_menu_item_menu_item_parent", "151");
INSERT INTO `wp_postmeta` VALUES("399", "203", "_menu_item_object_id", "195");
INSERT INTO `wp_postmeta` VALUES("400", "203", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("401", "203", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("402", "203", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("403", "203", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("404", "203", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("406", "204", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("407", "204", "_edit_lock", "1531912731:1");
INSERT INTO `wp_postmeta` VALUES("408", "204", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("409", "204", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("410", "204", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("411", "204", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("412", "204", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("413", "204", "_et_builder_version", "VB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("414", "204", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("415", "204", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("416", "204", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("417", "204", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("418", "204", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("419", "204", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("420", "207", "_wp_attached_file", "2018/05/IMG_0191-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("421", "207", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:28:\"2018/05/IMG_0191-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_0191-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_0191-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"IMG_0191-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_0191-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_0191-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_0191-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_0191-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1329140113\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("422", "207", "_wp_attachment_image_alt", "Beyond Ink Commercial Renovations");
INSERT INTO `wp_postmeta` VALUES("423", "208", "_wp_attached_file", "2018/05/Skilly-Hills-1-2.jpg");
INSERT INTO `wp_postmeta` VALUES("424", "208", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:28:\"2018/05/Skilly-Hills-1-2.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Skilly-Hills-1-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Skilly-Hills-1-2-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:28:\"Skilly-Hills-1-2-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:29:\"Skilly-Hills-1-2-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"Skilly-Hills-1-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:29:\"Skilly-Hills-1-2-1024x675.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"Skilly-Hills-1-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"Skilly-Hills-1-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"Skilly-Hills-1-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("425", "208", "_wp_attachment_image_alt", "Beyond Ink Commercial Renovations");
INSERT INTO `wp_postmeta` VALUES("426", "204", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("427", "204", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("1776", "204", "_yoast_wpseo_focuskw_text_input", "Renovation");
INSERT INTO `wp_postmeta` VALUES("429", "204", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"204\" /]");
INSERT INTO `wp_postmeta` VALUES("430", "210", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("431", "210", "_menu_item_menu_item_parent", "151");
INSERT INTO `wp_postmeta` VALUES("432", "210", "_menu_item_object_id", "204");
INSERT INTO `wp_postmeta` VALUES("433", "210", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("434", "210", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("435", "210", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("436", "210", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("437", "210", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("439", "211", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("440", "211", "_edit_lock", "1531912175:1");
INSERT INTO `wp_postmeta` VALUES("657", "328", "_wp_attached_file", "2018/05/2010088983_13_FS.jpg");
INSERT INTO `wp_postmeta` VALUES("658", "328", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:547;s:4:\"file\";s:28:\"2018/05/2010088983_13_FS.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"2010088983_13_FS-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"2010088983_13_FS-300x205.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"2010088983_13_FS-768x525.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"2010088983_13_FS-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"2010088983_13_FS-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"2010088983_13_FS-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"2010088983_13_FS-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("634", "232", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("635", "232", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("636", "232", "_et_pb_ab_subjects", "");
INSERT INTO `wp_postmeta` VALUES("637", "232", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"232\" /]");
INSERT INTO `wp_postmeta` VALUES("638", "322", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("639", "323", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("640", "323", "_edit_lock", "1528621592:1");
INSERT INTO `wp_postmeta` VALUES("641", "323", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("642", "323", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("643", "323", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("644", "323", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("645", "323", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("646", "323", "_et_builder_version", "VB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("647", "323", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("648", "323", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("649", "323", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("650", "323", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("651", "323", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("652", "323", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("653", "326", "_wp_attached_file", "2018/05/2010088983_10_FS.jpg");
INSERT INTO `wp_postmeta` VALUES("654", "326", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:531;s:4:\"file\";s:28:\"2018/05/2010088983_10_FS.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"2010088983_10_FS-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"2010088983_10_FS-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"2010088983_10_FS-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"2010088983_10_FS-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"2010088983_10_FS-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"2010088983_10_FS-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"2010088983_10_FS-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("655", "327", "_wp_attached_file", "2018/05/2010088983_11_FS.jpg");
INSERT INTO `wp_postmeta` VALUES("656", "327", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:531;s:4:\"file\";s:28:\"2018/05/2010088983_11_FS.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"2010088983_11_FS-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"2010088983_11_FS-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"2010088983_11_FS-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"2010088983_11_FS-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"2010088983_11_FS-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"2010088983_11_FS-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"2010088983_11_FS-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("1661", "828", "_wp_attached_file", "2018/06/Perspective-REV-B-AUGUST-1024x516.jpg");
INSERT INTO `wp_postmeta` VALUES("1662", "828", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:516;s:4:\"file\";s:45:\"2018/06/Perspective-REV-B-AUGUST-1024x516.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Perspective-REV-B-AUGUST-1024x516-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:\"Perspective-REV-B-AUGUST-1024x516-300x151.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:151;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"Perspective-REV-B-AUGUST-1024x516-768x387.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:387;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Perspective-REV-B-AUGUST-1024x516-1024x516.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:45:\"Perspective-REV-B-AUGUST-1024x516-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:45:\"Perspective-REV-B-AUGUST-1024x516-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:45:\"Perspective-REV-B-AUGUST-1024x516-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:45:\"Perspective-REV-B-AUGUST-1024x516-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1470823740\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("1659", "826", "_wp_attached_file", "2018/06/11-Walker-Street-HI-RES-1024x523.jpg");
INSERT INTO `wp_postmeta` VALUES("1660", "826", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:523;s:4:\"file\";s:44:\"2018/06/11-Walker-Street-HI-RES-1024x523.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"11-Walker-Street-HI-RES-1024x523-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:44:\"11-Walker-Street-HI-RES-1024x523-300x153.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"11-Walker-Street-HI-RES-1024x523-768x392.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:392;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"11-Walker-Street-HI-RES-1024x523-1024x523.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:523;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:44:\"11-Walker-Street-HI-RES-1024x523-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:44:\"11-Walker-Street-HI-RES-1024x523-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:44:\"11-Walker-Street-HI-RES-1024x523-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:44:\"11-Walker-Street-HI-RES-1024x523-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1522928900\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("661", "330", "_wp_attached_file", "2018/05/2010088983_19_FS.jpg");
INSERT INTO `wp_postmeta` VALUES("662", "330", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:531;s:4:\"file\";s:28:\"2018/05/2010088983_19_FS.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"2010088983_19_FS-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"2010088983_19_FS-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"2010088983_19_FS-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"2010088983_19_FS-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"2010088983_19_FS-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"2010088983_19_FS-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"2010088983_19_FS-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("1657", "811", "_et_pb_module_type", "et_pb_text");
INSERT INTO `wp_postmeta` VALUES("1658", "811", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("659", "329", "_wp_attached_file", "2018/05/2010088983_17_FS.jpg");
INSERT INTO `wp_postmeta` VALUES("660", "329", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:531;s:4:\"file\";s:28:\"2018/05/2010088983_17_FS.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"2010088983_17_FS-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"2010088983_17_FS-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"2010088983_17_FS-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"2010088983_17_FS-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"2010088983_17_FS-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"2010088983_17_FS-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"2010088983_17_FS-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("457", "211", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("458", "211", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("459", "211", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("460", "211", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("461", "211", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("462", "211", "_et_builder_version", "VB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("463", "211", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("464", "211", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("465", "211", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("466", "211", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("467", "211", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("468", "211", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("469", "211", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("470", "211", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("1699", "211", "_yoast_wpseo_focuskw_text_input", "Beyond Ink");
INSERT INTO `wp_postmeta` VALUES("472", "211", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"211\" /]");
INSERT INTO `wp_postmeta` VALUES("473", "224", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("474", "224", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("475", "224", "_menu_item_object_id", "211");
INSERT INTO `wp_postmeta` VALUES("476", "224", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("477", "224", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("478", "224", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("479", "224", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("480", "224", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("482", "232", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("483", "232", "_edit_lock", "1528622861:1");
INSERT INTO `wp_postmeta` VALUES("484", "232", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("485", "232", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("486", "232", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("487", "232", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("488", "232", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("489", "232", "_et_builder_version", "VB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("490", "232", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("491", "232", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("492", "232", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("493", "232", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("494", "232", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("495", "232", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("496", "235", "_wp_attached_file", "2018/05/1-The-Latch-Atkinson-Rd-Crafers-West-18-800x532.jpg");
INSERT INTO `wp_postmeta` VALUES("497", "235", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:532;s:4:\"file\";s:59:\"2018/05/1-The-Latch-Atkinson-Rd-Crafers-West-18-800x532.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"1-The-Latch-Atkinson-Rd-Crafers-West-18-800x532-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"1-The-Latch-Atkinson-Rd-Crafers-West-18-800x532-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"1-The-Latch-Atkinson-Rd-Crafers-West-18-800x532-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:59:\"1-The-Latch-Atkinson-Rd-Crafers-West-18-800x532-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:59:\"1-The-Latch-Atkinson-Rd-Crafers-West-18-800x532-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:59:\"1-The-Latch-Atkinson-Rd-Crafers-West-18-800x532-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:59:\"1-The-Latch-Atkinson-Rd-Crafers-West-18-800x532-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"6.3\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D700\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1321454426\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"31\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("498", "236", "_wp_attached_file", "2018/05/2-The-Latch-Atkinson-Rd-Crafers-West-38-532x800.jpg");
INSERT INTO `wp_postmeta` VALUES("499", "236", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:532;s:6:\"height\";i:800;s:4:\"file\";s:59:\"2018/05/2-The-Latch-Atkinson-Rd-Crafers-West-38-532x800.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"2-The-Latch-Atkinson-Rd-Crafers-West-38-532x800-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"2-The-Latch-Atkinson-Rd-Crafers-West-38-532x800-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:59:\"2-The-Latch-Atkinson-Rd-Crafers-West-38-532x800-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:59:\"2-The-Latch-Atkinson-Rd-Crafers-West-38-532x800-532x675.jpg\";s:5:\"width\";i:532;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:59:\"2-The-Latch-Atkinson-Rd-Crafers-West-38-532x800-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:59:\"2-The-Latch-Atkinson-Rd-Crafers-West-38-532x800-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:59:\"2-The-Latch-Atkinson-Rd-Crafers-West-38-532x800-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D700\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1321454586\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("500", "237", "_wp_attached_file", "2018/05/3-The-Latch-Atkinson-Rd-Crafers-West-35-800x532.jpg");
INSERT INTO `wp_postmeta` VALUES("501", "237", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:532;s:4:\"file\";s:59:\"2018/05/3-The-Latch-Atkinson-Rd-Crafers-West-35-800x532.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"3-The-Latch-Atkinson-Rd-Crafers-West-35-800x532-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"3-The-Latch-Atkinson-Rd-Crafers-West-35-800x532-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"3-The-Latch-Atkinson-Rd-Crafers-West-35-800x532-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:59:\"3-The-Latch-Atkinson-Rd-Crafers-West-35-800x532-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:59:\"3-The-Latch-Atkinson-Rd-Crafers-West-35-800x532-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:59:\"3-The-Latch-Atkinson-Rd-Crafers-West-35-800x532-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:59:\"3-The-Latch-Atkinson-Rd-Crafers-West-35-800x532-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D700\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1321454974\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("502", "238", "_wp_attached_file", "2018/05/4-The-Latch-Atkinson-Rd-Crafers-West-4-800x532.jpg");
INSERT INTO `wp_postmeta` VALUES("503", "238", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:532;s:4:\"file\";s:58:\"2018/05/4-The-Latch-Atkinson-Rd-Crafers-West-4-800x532.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"4-The-Latch-Atkinson-Rd-Crafers-West-4-800x532-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:58:\"4-The-Latch-Atkinson-Rd-Crafers-West-4-800x532-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:58:\"4-The-Latch-Atkinson-Rd-Crafers-West-4-800x532-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:58:\"4-The-Latch-Atkinson-Rd-Crafers-West-4-800x532-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:58:\"4-The-Latch-Atkinson-Rd-Crafers-West-4-800x532-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:58:\"4-The-Latch-Atkinson-Rd-Crafers-West-4-800x532-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:58:\"4-The-Latch-Atkinson-Rd-Crafers-West-4-800x532-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D700\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1321453520\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("504", "239", "_wp_attached_file", "2018/05/5-800x532.jpg");
INSERT INTO `wp_postmeta` VALUES("505", "239", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:532;s:4:\"file\";s:21:\"2018/05/5-800x532.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"5-800x532-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"5-800x532-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"5-800x532-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"5-800x532-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"5-800x532-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"5-800x532-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"5-800x532-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1328455258\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("506", "240", "_wp_attached_file", "2018/05/5-Atkinson-Day-1-of-47-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("507", "240", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:42:\"2018/05/5-Atkinson-Day-1-of-47-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-1-of-47-800x535-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-1-of-47-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-1-of-47-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-1-of-47-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-1-of-47-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-1-of-47-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-1-of-47-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381507920\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("508", "241", "_wp_attached_file", "2018/05/5-Atkinson-Day-2-of-47-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("509", "241", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:42:\"2018/05/5-Atkinson-Day-2-of-47-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-2-of-47-800x535-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-2-of-47-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-2-of-47-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-2-of-47-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-2-of-47-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-2-of-47-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-2-of-47-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381508042\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("510", "242", "_wp_attached_file", "2018/05/5-Atkinson-Day-3-of-47-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("511", "242", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:42:\"2018/05/5-Atkinson-Day-3-of-47-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-3-of-47-800x535-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-3-of-47-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-3-of-47-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-3-of-47-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-3-of-47-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-3-of-47-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-3-of-47-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381508152\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("512", "243", "_wp_attached_file", "2018/05/5-Atkinson-Day-4-of-47-535x800.jpg");
INSERT INTO `wp_postmeta` VALUES("513", "243", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:535;s:6:\"height\";i:800;s:4:\"file\";s:42:\"2018/05/5-Atkinson-Day-4-of-47-535x800.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-4-of-47-535x800-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-4-of-47-535x800-201x300.jpg\";s:5:\"width\";i:201;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-4-of-47-535x800-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-4-of-47-535x800-535x675.jpg\";s:5:\"width\";i:535;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-4-of-47-535x800-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-4-of-47-535x800-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-4-of-47-535x800-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381508250\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("514", "244", "_wp_attached_file", "2018/05/5-Atkinson-Day-5-of-47-535x800.jpg");
INSERT INTO `wp_postmeta` VALUES("515", "244", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:535;s:6:\"height\";i:800;s:4:\"file\";s:42:\"2018/05/5-Atkinson-Day-5-of-47-535x800.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-5-of-47-535x800-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-5-of-47-535x800-201x300.jpg\";s:5:\"width\";i:201;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-5-of-47-535x800-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-5-of-47-535x800-535x675.jpg\";s:5:\"width\";i:535;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-5-of-47-535x800-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-5-of-47-535x800-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-5-of-47-535x800-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381508370\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("516", "245", "_wp_attached_file", "2018/05/5-Atkinson-Day-6-of-47-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("517", "245", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:42:\"2018/05/5-Atkinson-Day-6-of-47-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-6-of-47-800x535-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-6-of-47-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-6-of-47-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-6-of-47-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-6-of-47-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-6-of-47-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-6-of-47-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381508496\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("518", "246", "_wp_attached_file", "2018/05/5-Atkinson-Day-7-of-47-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("519", "246", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:42:\"2018/05/5-Atkinson-Day-7-of-47-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-7-of-47-800x535-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-7-of-47-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-7-of-47-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-7-of-47-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-7-of-47-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-7-of-47-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-7-of-47-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381508588\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("520", "247", "_wp_attached_file", "2018/05/5-Atkinson-Day-8-of-47-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("521", "247", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:42:\"2018/05/5-Atkinson-Day-8-of-47-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-8-of-47-800x535-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-8-of-47-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-8-of-47-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-8-of-47-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-8-of-47-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-8-of-47-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-8-of-47-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381508706\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("522", "248", "_wp_attached_file", "2018/05/5-Atkinson-Day-9-of-47-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("523", "248", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:42:\"2018/05/5-Atkinson-Day-9-of-47-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-9-of-47-800x535-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-9-of-47-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-9-of-47-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-9-of-47-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-9-of-47-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-9-of-47-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:42:\"5-Atkinson-Day-9-of-47-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381508816\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("524", "249", "_wp_attached_file", "2018/05/5-Atkinson-Day-10-of-47-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("525", "249", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:43:\"2018/05/5-Atkinson-Day-10-of-47-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-10-of-47-800x535-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:43:\"5-Atkinson-Day-10-of-47-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-10-of-47-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-10-of-47-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-10-of-47-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-10-of-47-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-10-of-47-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381508910\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("526", "250", "_wp_attached_file", "2018/05/5-Atkinson-Day-11-of-47-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("527", "250", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:43:\"2018/05/5-Atkinson-Day-11-of-47-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-11-of-47-800x535-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:43:\"5-Atkinson-Day-11-of-47-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-11-of-47-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-11-of-47-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-11-of-47-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-11-of-47-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-11-of-47-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381509024\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("528", "251", "_wp_attached_file", "2018/05/5-Atkinson-Day-12-of-47-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("529", "251", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:43:\"2018/05/5-Atkinson-Day-12-of-47-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-12-of-47-800x535-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:43:\"5-Atkinson-Day-12-of-47-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-12-of-47-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-12-of-47-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-12-of-47-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-12-of-47-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-12-of-47-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381509110\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("530", "252", "_wp_attached_file", "2018/05/5-Atkinson-Day-13-of-47-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("531", "252", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:43:\"2018/05/5-Atkinson-Day-13-of-47-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-13-of-47-800x535-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:43:\"5-Atkinson-Day-13-of-47-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-13-of-47-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-13-of-47-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-13-of-47-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-13-of-47-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-13-of-47-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381509222\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("532", "253", "_wp_attached_file", "2018/05/5-Atkinson-Day-14-of-47-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("533", "253", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:43:\"2018/05/5-Atkinson-Day-14-of-47-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-14-of-47-800x535-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:43:\"5-Atkinson-Day-14-of-47-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-14-of-47-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-14-of-47-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-14-of-47-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-14-of-47-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-14-of-47-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381509338\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("534", "254", "_wp_attached_file", "2018/05/5-Atkinson-Day-15-of-47-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("535", "254", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:43:\"2018/05/5-Atkinson-Day-15-of-47-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-15-of-47-800x535-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:43:\"5-Atkinson-Day-15-of-47-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-15-of-47-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-15-of-47-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-15-of-47-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-15-of-47-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-15-of-47-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381509482\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("536", "255", "_wp_attached_file", "2018/05/5-Atkinson-Day-16-of-47-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("537", "255", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:43:\"2018/05/5-Atkinson-Day-16-of-47-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-16-of-47-800x535-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:43:\"5-Atkinson-Day-16-of-47-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-16-of-47-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-16-of-47-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-16-of-47-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-16-of-47-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-16-of-47-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381509624\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("538", "256", "_wp_attached_file", "2018/05/5-Atkinson-Day-17-of-47-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("539", "256", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:43:\"2018/05/5-Atkinson-Day-17-of-47-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-17-of-47-800x535-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:43:\"5-Atkinson-Day-17-of-47-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-17-of-47-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-17-of-47-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-17-of-47-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-17-of-47-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-17-of-47-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381509882\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("540", "257", "_wp_attached_file", "2018/05/5-Atkinson-Day-18-of-47-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("541", "257", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:43:\"2018/05/5-Atkinson-Day-18-of-47-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-18-of-47-800x535-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:43:\"5-Atkinson-Day-18-of-47-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-18-of-47-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-18-of-47-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-18-of-47-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-18-of-47-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-18-of-47-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381510070\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("542", "258", "_wp_attached_file", "2018/05/5-Atkinson-Day-19-of-47-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("543", "258", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:43:\"2018/05/5-Atkinson-Day-19-of-47-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-19-of-47-800x535-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:43:\"5-Atkinson-Day-19-of-47-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-19-of-47-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-19-of-47-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-19-of-47-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-19-of-47-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-19-of-47-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381510256\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("544", "259", "_wp_attached_file", "2018/05/5-Atkinson-Day-20-of-47-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("545", "259", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:43:\"2018/05/5-Atkinson-Day-20-of-47-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-20-of-47-800x535-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:43:\"5-Atkinson-Day-20-of-47-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-20-of-47-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-20-of-47-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-20-of-47-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-20-of-47-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-20-of-47-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381510504\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("546", "260", "_wp_attached_file", "2018/05/5-Atkinson-Day-21-of-47-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("547", "260", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:43:\"2018/05/5-Atkinson-Day-21-of-47-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-21-of-47-800x535-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:43:\"5-Atkinson-Day-21-of-47-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-21-of-47-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-21-of-47-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-21-of-47-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-21-of-47-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-21-of-47-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381510738\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("548", "261", "_wp_attached_file", "2018/05/5-Atkinson-Day-22-of-47-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("549", "261", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:43:\"2018/05/5-Atkinson-Day-22-of-47-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-22-of-47-800x535-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:43:\"5-Atkinson-Day-22-of-47-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-22-of-47-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-22-of-47-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-22-of-47-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-22-of-47-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-22-of-47-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381510978\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("550", "262", "_wp_attached_file", "2018/05/5-Atkinson-Day-23-of-47-535x800.jpg");
INSERT INTO `wp_postmeta` VALUES("551", "262", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:535;s:6:\"height\";i:800;s:4:\"file\";s:43:\"2018/05/5-Atkinson-Day-23-of-47-535x800.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-23-of-47-535x800-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:43:\"5-Atkinson-Day-23-of-47-535x800-201x300.jpg\";s:5:\"width\";i:201;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-23-of-47-535x800-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-23-of-47-535x800-535x675.jpg\";s:5:\"width\";i:535;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-23-of-47-535x800-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-23-of-47-535x800-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-23-of-47-535x800-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381511116\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("552", "263", "_wp_attached_file", "2018/05/5-Atkinson-Day-24-of-47-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("553", "263", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:43:\"2018/05/5-Atkinson-Day-24-of-47-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-24-of-47-800x535-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:43:\"5-Atkinson-Day-24-of-47-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-24-of-47-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-24-of-47-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-24-of-47-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-24-of-47-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-24-of-47-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381511338\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("554", "264", "_wp_attached_file", "2018/05/5-Atkinson-Day-25-of-47-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("555", "264", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:43:\"2018/05/5-Atkinson-Day-25-of-47-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-25-of-47-800x535-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:43:\"5-Atkinson-Day-25-of-47-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-25-of-47-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-25-of-47-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-25-of-47-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-25-of-47-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-25-of-47-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381511616\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("556", "265", "_wp_attached_file", "2018/05/5-Atkinson-Day-26-of-47-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("557", "265", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:43:\"2018/05/5-Atkinson-Day-26-of-47-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-26-of-47-800x535-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:43:\"5-Atkinson-Day-26-of-47-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-26-of-47-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-26-of-47-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-26-of-47-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-26-of-47-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-26-of-47-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381511804\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("558", "266", "_wp_attached_file", "2018/05/5-Atkinson-Day-27-of-47-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("559", "266", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:43:\"2018/05/5-Atkinson-Day-27-of-47-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-27-of-47-800x535-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:43:\"5-Atkinson-Day-27-of-47-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-27-of-47-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-27-of-47-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-27-of-47-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-27-of-47-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-27-of-47-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381512016\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("560", "267", "_wp_attached_file", "2018/05/5-Atkinson-Day-28-of-47-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("561", "267", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:43:\"2018/05/5-Atkinson-Day-28-of-47-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-28-of-47-800x535-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:43:\"5-Atkinson-Day-28-of-47-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-28-of-47-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-28-of-47-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-28-of-47-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-28-of-47-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-28-of-47-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381512226\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("562", "268", "_wp_attached_file", "2018/05/5-Atkinson-Day-29-of-47-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("563", "268", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:43:\"2018/05/5-Atkinson-Day-29-of-47-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-29-of-47-800x535-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:43:\"5-Atkinson-Day-29-of-47-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-29-of-47-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-29-of-47-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-29-of-47-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-29-of-47-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-29-of-47-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381512392\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("564", "269", "_wp_attached_file", "2018/05/5-Atkinson-Day-30-of-47-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("565", "269", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:43:\"2018/05/5-Atkinson-Day-30-of-47-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-30-of-47-800x535-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:43:\"5-Atkinson-Day-30-of-47-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-30-of-47-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-30-of-47-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-30-of-47-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-30-of-47-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-30-of-47-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381512520\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("566", "270", "_wp_attached_file", "2018/05/5-Atkinson-Day-31-of-47-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("567", "270", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:43:\"2018/05/5-Atkinson-Day-31-of-47-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-31-of-47-800x535-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:43:\"5-Atkinson-Day-31-of-47-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-31-of-47-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-31-of-47-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-31-of-47-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-31-of-47-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-31-of-47-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381512614\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("568", "271", "_wp_attached_file", "2018/05/5-Atkinson-Day-32-of-47-535x800.jpg");
INSERT INTO `wp_postmeta` VALUES("569", "271", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:535;s:6:\"height\";i:800;s:4:\"file\";s:43:\"2018/05/5-Atkinson-Day-32-of-47-535x800.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-32-of-47-535x800-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:43:\"5-Atkinson-Day-32-of-47-535x800-201x300.jpg\";s:5:\"width\";i:201;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-32-of-47-535x800-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-32-of-47-535x800-535x675.jpg\";s:5:\"width\";i:535;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-32-of-47-535x800-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-32-of-47-535x800-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-32-of-47-535x800-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381512710\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("570", "272", "_wp_attached_file", "2018/05/5-Atkinson-Day-33-of-47-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("571", "272", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:43:\"2018/05/5-Atkinson-Day-33-of-47-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-33-of-47-800x535-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:43:\"5-Atkinson-Day-33-of-47-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-33-of-47-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-33-of-47-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-33-of-47-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-33-of-47-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-33-of-47-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381512808\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("572", "273", "_wp_attached_file", "2018/05/5-Atkinson-Day-34-of-47-535x800.jpg");
INSERT INTO `wp_postmeta` VALUES("573", "273", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:535;s:6:\"height\";i:800;s:4:\"file\";s:43:\"2018/05/5-Atkinson-Day-34-of-47-535x800.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-34-of-47-535x800-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:43:\"5-Atkinson-Day-34-of-47-535x800-201x300.jpg\";s:5:\"width\";i:201;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-34-of-47-535x800-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-34-of-47-535x800-535x675.jpg\";s:5:\"width\";i:535;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-34-of-47-535x800-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-34-of-47-535x800-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-34-of-47-535x800-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381512900\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("574", "274", "_wp_attached_file", "2018/05/5-Atkinson-Day-35-of-47-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("575", "274", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:43:\"2018/05/5-Atkinson-Day-35-of-47-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-35-of-47-800x535-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:43:\"5-Atkinson-Day-35-of-47-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-35-of-47-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-35-of-47-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-35-of-47-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-35-of-47-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-35-of-47-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381512968\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("576", "275", "_wp_attached_file", "2018/05/5-Atkinson-Day-36-of-47-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("577", "275", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:43:\"2018/05/5-Atkinson-Day-36-of-47-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-36-of-47-800x535-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:43:\"5-Atkinson-Day-36-of-47-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-36-of-47-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-36-of-47-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-36-of-47-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-36-of-47-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-36-of-47-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381513070\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("578", "276", "_wp_attached_file", "2018/05/5-Atkinson-Day-37-of-47-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("579", "276", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:43:\"2018/05/5-Atkinson-Day-37-of-47-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-37-of-47-800x535-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:43:\"5-Atkinson-Day-37-of-47-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-37-of-47-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-37-of-47-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-37-of-47-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-37-of-47-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-37-of-47-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381513150\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("580", "277", "_wp_attached_file", "2018/05/5-Atkinson-Day-38-of-47-535x800.jpg");
INSERT INTO `wp_postmeta` VALUES("581", "277", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:535;s:6:\"height\";i:800;s:4:\"file\";s:43:\"2018/05/5-Atkinson-Day-38-of-47-535x800.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-38-of-47-535x800-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:43:\"5-Atkinson-Day-38-of-47-535x800-201x300.jpg\";s:5:\"width\";i:201;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-38-of-47-535x800-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-38-of-47-535x800-535x675.jpg\";s:5:\"width\";i:535;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-38-of-47-535x800-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-38-of-47-535x800-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-38-of-47-535x800-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381513236\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("582", "278", "_wp_attached_file", "2018/05/5-Atkinson-Day-39-of-47-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("583", "278", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:43:\"2018/05/5-Atkinson-Day-39-of-47-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-39-of-47-800x535-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:43:\"5-Atkinson-Day-39-of-47-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-39-of-47-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-39-of-47-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-39-of-47-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-39-of-47-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-39-of-47-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381513346\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("584", "279", "_wp_attached_file", "2018/05/5-Atkinson-Day-40-of-47-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("585", "279", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:43:\"2018/05/5-Atkinson-Day-40-of-47-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-40-of-47-800x535-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:43:\"5-Atkinson-Day-40-of-47-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-40-of-47-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-40-of-47-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-40-of-47-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-40-of-47-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-40-of-47-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381513450\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("586", "280", "_wp_attached_file", "2018/05/5-Atkinson-Day-41-of-47-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("587", "280", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:43:\"2018/05/5-Atkinson-Day-41-of-47-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-41-of-47-800x535-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:43:\"5-Atkinson-Day-41-of-47-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-41-of-47-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-41-of-47-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-41-of-47-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-41-of-47-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-41-of-47-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381513540\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("588", "281", "_wp_attached_file", "2018/05/5-Atkinson-Day-42-of-47-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("589", "281", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:43:\"2018/05/5-Atkinson-Day-42-of-47-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-42-of-47-800x535-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:43:\"5-Atkinson-Day-42-of-47-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-42-of-47-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-42-of-47-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-42-of-47-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-42-of-47-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-42-of-47-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381513632\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("590", "282", "_wp_attached_file", "2018/05/5-Atkinson-Day-43-of-47-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("591", "282", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:43:\"2018/05/5-Atkinson-Day-43-of-47-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-43-of-47-800x535-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:43:\"5-Atkinson-Day-43-of-47-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-43-of-47-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-43-of-47-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-43-of-47-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-43-of-47-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-43-of-47-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381513724\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("592", "283", "_wp_attached_file", "2018/05/5-Atkinson-Day-44-of-47-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("593", "283", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:43:\"2018/05/5-Atkinson-Day-44-of-47-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-44-of-47-800x535-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:43:\"5-Atkinson-Day-44-of-47-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-44-of-47-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-44-of-47-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-44-of-47-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-44-of-47-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-44-of-47-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381513840\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("594", "284", "_wp_attached_file", "2018/05/5-Atkinson-Day-45-of-47-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("595", "284", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:43:\"2018/05/5-Atkinson-Day-45-of-47-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-45-of-47-800x535-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:43:\"5-Atkinson-Day-45-of-47-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-45-of-47-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-45-of-47-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-45-of-47-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-45-of-47-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-45-of-47-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381513926\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("596", "285", "_wp_attached_file", "2018/05/5-Atkinson-Day-46-of-47-535x800.jpg");
INSERT INTO `wp_postmeta` VALUES("597", "285", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:535;s:6:\"height\";i:800;s:4:\"file\";s:43:\"2018/05/5-Atkinson-Day-46-of-47-535x800.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-46-of-47-535x800-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:43:\"5-Atkinson-Day-46-of-47-535x800-201x300.jpg\";s:5:\"width\";i:201;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-46-of-47-535x800-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-46-of-47-535x800-535x675.jpg\";s:5:\"width\";i:535;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-46-of-47-535x800-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-46-of-47-535x800-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-46-of-47-535x800-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381514002\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("598", "286", "_wp_attached_file", "2018/05/5-Atkinson-Day-47-of-47-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("599", "286", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:43:\"2018/05/5-Atkinson-Day-47-of-47-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-47-of-47-800x535-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:43:\"5-Atkinson-Day-47-of-47-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-47-of-47-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-47-of-47-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-47-of-47-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-47-of-47-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"5-Atkinson-Day-47-of-47-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381514120\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("600", "287", "_wp_attached_file", "2018/05/5-Atkinson-Exterior-1-of-6-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("601", "287", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:46:\"2018/05/5-Atkinson-Exterior-1-of-6-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"5-Atkinson-Exterior-1-of-6-800x535-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:46:\"5-Atkinson-Exterior-1-of-6-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"5-Atkinson-Exterior-1-of-6-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"5-Atkinson-Exterior-1-of-6-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"5-Atkinson-Exterior-1-of-6-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"5-Atkinson-Exterior-1-of-6-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"5-Atkinson-Exterior-1-of-6-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381514314\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("602", "288", "_wp_attached_file", "2018/05/5-Atkinson-Exterior-2-of-6-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("603", "288", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:46:\"2018/05/5-Atkinson-Exterior-2-of-6-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"5-Atkinson-Exterior-2-of-6-800x535-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:46:\"5-Atkinson-Exterior-2-of-6-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"5-Atkinson-Exterior-2-of-6-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"5-Atkinson-Exterior-2-of-6-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"5-Atkinson-Exterior-2-of-6-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"5-Atkinson-Exterior-2-of-6-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"5-Atkinson-Exterior-2-of-6-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381514468\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("604", "289", "_wp_attached_file", "2018/05/5-Atkinson-Exterior-3-of-6-800x535-1.jpg");
INSERT INTO `wp_postmeta` VALUES("605", "289", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:48:\"2018/05/5-Atkinson-Exterior-3-of-6-800x535-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"5-Atkinson-Exterior-3-of-6-800x535-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"5-Atkinson-Exterior-3-of-6-800x535-1-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"5-Atkinson-Exterior-3-of-6-800x535-1-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:48:\"5-Atkinson-Exterior-3-of-6-800x535-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:48:\"5-Atkinson-Exterior-3-of-6-800x535-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:48:\"5-Atkinson-Exterior-3-of-6-800x535-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:48:\"5-Atkinson-Exterior-3-of-6-800x535-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381514614\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("606", "290", "_wp_attached_file", "2018/05/5-Atkinson-Exterior-4-of-6-800x535-1.jpg");
INSERT INTO `wp_postmeta` VALUES("607", "290", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:48:\"2018/05/5-Atkinson-Exterior-4-of-6-800x535-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"5-Atkinson-Exterior-4-of-6-800x535-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"5-Atkinson-Exterior-4-of-6-800x535-1-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"5-Atkinson-Exterior-4-of-6-800x535-1-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:48:\"5-Atkinson-Exterior-4-of-6-800x535-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:48:\"5-Atkinson-Exterior-4-of-6-800x535-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:48:\"5-Atkinson-Exterior-4-of-6-800x535-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:48:\"5-Atkinson-Exterior-4-of-6-800x535-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381514712\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("608", "291", "_wp_attached_file", "2018/05/5-Atkinson-Exterior-5-of-6-535x800.jpg");
INSERT INTO `wp_postmeta` VALUES("609", "291", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:535;s:6:\"height\";i:800;s:4:\"file\";s:46:\"2018/05/5-Atkinson-Exterior-5-of-6-535x800.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"5-Atkinson-Exterior-5-of-6-535x800-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:46:\"5-Atkinson-Exterior-5-of-6-535x800-201x300.jpg\";s:5:\"width\";i:201;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"5-Atkinson-Exterior-5-of-6-535x800-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:46:\"5-Atkinson-Exterior-5-of-6-535x800-535x675.jpg\";s:5:\"width\";i:535;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"5-Atkinson-Exterior-5-of-6-535x800-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"5-Atkinson-Exterior-5-of-6-535x800-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"5-Atkinson-Exterior-5-of-6-535x800-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381514792\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("610", "292", "_wp_attached_file", "2018/05/5-Atkinson-Exterior-6-of-6-800x535.jpg");
INSERT INTO `wp_postmeta` VALUES("611", "292", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:535;s:4:\"file\";s:46:\"2018/05/5-Atkinson-Exterior-6-of-6-800x535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"5-Atkinson-Exterior-6-of-6-800x535-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:46:\"5-Atkinson-Exterior-6-of-6-800x535-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"5-Atkinson-Exterior-6-of-6-800x535-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"5-Atkinson-Exterior-6-of-6-800x535-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"5-Atkinson-Exterior-6-of-6-800x535-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"5-Atkinson-Exterior-6-of-6-800x535-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"5-Atkinson-Exterior-6-of-6-800x535-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1381514888\";s:9:\"copyright\";s:18:\"Michael Stentiford\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("612", "293", "_wp_attached_file", "2018/05/5-The-Latch-Atkinson-Rd-Crafers-West-37-800x532.jpg");
INSERT INTO `wp_postmeta` VALUES("613", "293", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:532;s:4:\"file\";s:59:\"2018/05/5-The-Latch-Atkinson-Rd-Crafers-West-37-800x532.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"5-The-Latch-Atkinson-Rd-Crafers-West-37-800x532-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"5-The-Latch-Atkinson-Rd-Crafers-West-37-800x532-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"5-The-Latch-Atkinson-Rd-Crafers-West-37-800x532-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:59:\"5-The-Latch-Atkinson-Rd-Crafers-West-37-800x532-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:59:\"5-The-Latch-Atkinson-Rd-Crafers-West-37-800x532-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:59:\"5-The-Latch-Atkinson-Rd-Crafers-West-37-800x532-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:59:\"5-The-Latch-Atkinson-Rd-Crafers-West-37-800x532-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D700\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1321454888\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("614", "294", "_wp_attached_file", "2018/05/7-The-Latch-Atkinson-Rd-Crafers-West-28-800x532.jpg");
INSERT INTO `wp_postmeta` VALUES("615", "294", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:532;s:4:\"file\";s:59:\"2018/05/7-The-Latch-Atkinson-Rd-Crafers-West-28-800x532.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"7-The-Latch-Atkinson-Rd-Crafers-West-28-800x532-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"7-The-Latch-Atkinson-Rd-Crafers-West-28-800x532-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"7-The-Latch-Atkinson-Rd-Crafers-West-28-800x532-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:59:\"7-The-Latch-Atkinson-Rd-Crafers-West-28-800x532-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:59:\"7-The-Latch-Atkinson-Rd-Crafers-West-28-800x532-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:59:\"7-The-Latch-Atkinson-Rd-Crafers-West-28-800x532-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:59:\"7-The-Latch-Atkinson-Rd-Crafers-West-28-800x532-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D700\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1321454768\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("616", "295", "_wp_attached_file", "2018/05/9-The-Latch-Atkinson-Rd-Crafers-West-25-532x800.jpg");
INSERT INTO `wp_postmeta` VALUES("617", "295", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:532;s:6:\"height\";i:800;s:4:\"file\";s:59:\"2018/05/9-The-Latch-Atkinson-Rd-Crafers-West-25-532x800.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"9-The-Latch-Atkinson-Rd-Crafers-West-25-532x800-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"9-The-Latch-Atkinson-Rd-Crafers-West-25-532x800-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:59:\"9-The-Latch-Atkinson-Rd-Crafers-West-25-532x800-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:59:\"9-The-Latch-Atkinson-Rd-Crafers-West-25-532x800-532x675.jpg\";s:5:\"width\";i:532;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:59:\"9-The-Latch-Atkinson-Rd-Crafers-West-25-532x800-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:59:\"9-The-Latch-Atkinson-Rd-Crafers-West-25-532x800-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:59:\"9-The-Latch-Atkinson-Rd-Crafers-West-25-532x800-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D700\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1321442537\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("618", "296", "_wp_attached_file", "2018/05/10-The-Latch-Atkinson-Rd-Crafers-West-20-800x532.jpg");
INSERT INTO `wp_postmeta` VALUES("619", "296", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:532;s:4:\"file\";s:60:\"2018/05/10-The-Latch-Atkinson-Rd-Crafers-West-20-800x532.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"10-The-Latch-Atkinson-Rd-Crafers-West-20-800x532-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:60:\"10-The-Latch-Atkinson-Rd-Crafers-West-20-800x532-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:60:\"10-The-Latch-Atkinson-Rd-Crafers-West-20-800x532-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:60:\"10-The-Latch-Atkinson-Rd-Crafers-West-20-800x532-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:60:\"10-The-Latch-Atkinson-Rd-Crafers-West-20-800x532-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:60:\"10-The-Latch-Atkinson-Rd-Crafers-West-20-800x532-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:60:\"10-The-Latch-Atkinson-Rd-Crafers-West-20-800x532-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D700\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1321442299\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"26\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("620", "297", "_wp_attached_file", "2018/05/Adelaide-Matters-1-650x800.jpg");
INSERT INTO `wp_postmeta` VALUES("621", "297", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:650;s:6:\"height\";i:800;s:4:\"file\";s:38:\"2018/05/Adelaide-Matters-1-650x800.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Adelaide-Matters-1-650x800-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"Adelaide-Matters-1-650x800-244x300.jpg\";s:5:\"width\";i:244;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:38:\"Adelaide-Matters-1-650x800-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:38:\"Adelaide-Matters-1-650x800-650x675.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:38:\"Adelaide-Matters-1-650x800-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:38:\"Adelaide-Matters-1-650x800-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:38:\"Adelaide-Matters-1-650x800-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1352353728\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("622", "298", "_wp_attached_file", "2018/05/lt-1-1P2147-1511431005-rsd-800x533-1.jpg");
INSERT INTO `wp_postmeta` VALUES("623", "298", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:48:\"2018/05/lt-1-1P2147-1511431005-rsd-800x533-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"lt-1-1P2147-1511431005-rsd-800x533-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"lt-1-1P2147-1511431005-rsd-800x533-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"lt-1-1P2147-1511431005-rsd-800x533-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:48:\"lt-1-1P2147-1511431005-rsd-800x533-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:48:\"lt-1-1P2147-1511431005-rsd-800x533-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:48:\"lt-1-1P2147-1511431005-rsd-800x533-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:48:\"lt-1-1P2147-1511431005-rsd-800x533-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("624", "299", "_wp_attached_file", "2018/05/lt-1-1P2147-1511447357-rsd-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("625", "299", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:46:\"2018/05/lt-1-1P2147-1511447357-rsd-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"lt-1-1P2147-1511447357-rsd-800x533-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:46:\"lt-1-1P2147-1511447357-rsd-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"lt-1-1P2147-1511447357-rsd-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"lt-1-1P2147-1511447357-rsd-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"lt-1-1P2147-1511447357-rsd-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"lt-1-1P2147-1511447357-rsd-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"lt-1-1P2147-1511447357-rsd-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("626", "300", "_wp_attached_file", "2018/05/lt-1-1P2147-1811196365-rsd-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("627", "300", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:46:\"2018/05/lt-1-1P2147-1811196365-rsd-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"lt-1-1P2147-1811196365-rsd-800x533-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:46:\"lt-1-1P2147-1811196365-rsd-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"lt-1-1P2147-1811196365-rsd-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"lt-1-1P2147-1811196365-rsd-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"lt-1-1P2147-1811196365-rsd-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"lt-1-1P2147-1811196365-rsd-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"lt-1-1P2147-1811196365-rsd-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("628", "301", "_wp_attached_file", "2018/05/lt-1-1P2147-1811234477-rsd-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("629", "301", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:46:\"2018/05/lt-1-1P2147-1811234477-rsd-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"lt-1-1P2147-1811234477-rsd-800x533-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:46:\"lt-1-1P2147-1811234477-rsd-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"lt-1-1P2147-1811234477-rsd-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"lt-1-1P2147-1811234477-rsd-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"lt-1-1P2147-1811234477-rsd-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"lt-1-1P2147-1811234477-rsd-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"lt-1-1P2147-1811234477-rsd-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("630", "302", "_wp_attached_file", "2018/05/The-Latch-Atkinson-Rd-Crafers-West-5-800x532.jpg");
INSERT INTO `wp_postmeta` VALUES("631", "302", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:532;s:4:\"file\";s:56:\"2018/05/The-Latch-Atkinson-Rd-Crafers-West-5-800x532.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:56:\"The-Latch-Atkinson-Rd-Crafers-West-5-800x532-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:56:\"The-Latch-Atkinson-Rd-Crafers-West-5-800x532-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:56:\"The-Latch-Atkinson-Rd-Crafers-West-5-800x532-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:56:\"The-Latch-Atkinson-Rd-Crafers-West-5-800x532-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:56:\"The-Latch-Atkinson-Rd-Crafers-West-5-800x532-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:56:\"The-Latch-Atkinson-Rd-Crafers-West-5-800x532-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:56:\"The-Latch-Atkinson-Rd-Crafers-West-5-800x532-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D700\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1321441712\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:8:\"0.003125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("663", "331", "_wp_attached_file", "2018/05/Bell-6.jpg");
INSERT INTO `wp_postmeta` VALUES("664", "331", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:531;s:4:\"file\";s:18:\"2018/05/Bell-6.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"Bell-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"Bell-6-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"Bell-6-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"Bell-6-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"Bell-6-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"Bell-6-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"Bell-6-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("665", "332", "_wp_attached_file", "2018/05/Bell-7.jpg");
INSERT INTO `wp_postmeta` VALUES("666", "332", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:531;s:4:\"file\";s:18:\"2018/05/Bell-7.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"Bell-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"Bell-7-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"Bell-7-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"Bell-7-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"Bell-7-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"Bell-7-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"Bell-7-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("667", "333", "_wp_attached_file", "2018/05/Bell-8.jpg");
INSERT INTO `wp_postmeta` VALUES("668", "333", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:479;s:4:\"file\";s:18:\"2018/05/Bell-8.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"Bell-8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"Bell-8-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"Bell-8-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"Bell-8-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"Bell-8-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"Bell-8-400x479.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:479;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("669", "334", "_wp_attached_file", "2018/05/Bell-9.jpg");
INSERT INTO `wp_postmeta` VALUES("670", "334", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:531;s:4:\"file\";s:18:\"2018/05/Bell-9.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"Bell-9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"Bell-9-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"Bell-9-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"Bell-9-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"Bell-9-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"Bell-9-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"Bell-9-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("671", "335", "_wp_attached_file", "2018/05/Bell-Crt-2.jpg");
INSERT INTO `wp_postmeta` VALUES("672", "335", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:542;s:4:\"file\";s:22:\"2018/05/Bell-Crt-2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Bell-Crt-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Bell-Crt-2-300x203.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:203;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"Bell-Crt-2-768x520.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"Bell-Crt-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"Bell-Crt-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:22:\"Bell-Crt-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:22:\"Bell-Crt-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("673", "336", "_wp_attached_file", "2018/05/Bell-Crt-4-1.jpg");
INSERT INTO `wp_postmeta` VALUES("674", "336", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:531;s:4:\"file\";s:24:\"2018/05/Bell-Crt-4-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Bell-Crt-4-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Bell-Crt-4-1-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Bell-Crt-4-1-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"Bell-Crt-4-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"Bell-Crt-4-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"Bell-Crt-4-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"Bell-Crt-4-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("675", "337", "_wp_attached_file", "2018/05/Bell-Crt-5.jpg");
INSERT INTO `wp_postmeta` VALUES("676", "337", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:531;s:4:\"file\";s:22:\"2018/05/Bell-Crt-5.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Bell-Crt-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Bell-Crt-5-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"Bell-Crt-5-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"Bell-Crt-5-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"Bell-Crt-5-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:22:\"Bell-Crt-5-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:22:\"Bell-Crt-5-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("677", "323", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("678", "323", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("679", "323", "_et_pb_ab_subjects", "");
INSERT INTO `wp_postmeta` VALUES("680", "323", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"323\" /]");
INSERT INTO `wp_postmeta` VALUES("681", "339", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("682", "339", "_edit_lock", "1528622936:1");
INSERT INTO `wp_postmeta` VALUES("683", "339", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("684", "339", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("685", "339", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("686", "339", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("687", "339", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("688", "339", "_et_builder_version", "VB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("689", "339", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("690", "339", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("691", "339", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("692", "339", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("693", "339", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("694", "339", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("695", "341", "_wp_attached_file", "2018/05/7-800x600.jpg");
INSERT INTO `wp_postmeta` VALUES("696", "341", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:21:\"2018/05/7-800x600.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"7-800x600-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"7-800x600-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:21:\"7-800x600-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"7-800x600-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"7-800x600-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"7-800x600-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"7-800x600-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"GT-S5830T\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1329129136\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.55\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:18:\"0.0021231422505308\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("697", "342", "_wp_attached_file", "2018/05/8-800x600.jpg");
INSERT INTO `wp_postmeta` VALUES("698", "342", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:21:\"2018/05/8-800x600.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"8-800x600-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"8-800x600-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:21:\"8-800x600-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"8-800x600-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"8-800x600-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"8-800x600-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"8-800x600-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"GT-S5830T\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1329129180\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.55\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:18:\"0.0061349693251534\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("699", "343", "_wp_attached_file", "2018/05/9-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("700", "343", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:21:\"2018/05/9-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"9-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"9-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"9-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"9-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"9-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"9-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"9-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1329130870\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("701", "344", "_wp_attached_file", "2018/05/11-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("702", "344", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:22:\"2018/05/11-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"11-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"11-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"11-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"11-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"11-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:22:\"11-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:22:\"11-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"18\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1329130782\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("703", "345", "_wp_attached_file", "2018/05/12-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("704", "345", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:22:\"2018/05/12-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"12-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"12-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"12-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"12-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"12-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:22:\"12-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:22:\"12-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"16\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1329130759\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("705", "346", "_wp_attached_file", "2018/05/13-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("706", "346", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:22:\"2018/05/13-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"13-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"13-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"13-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"13-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"13-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:22:\"13-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:22:\"13-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"16\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1329130712\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("707", "347", "_wp_attached_file", "2018/05/14-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("708", "347", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:22:\"2018/05/14-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"14-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"14-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"14-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"14-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"14-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:22:\"14-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:22:\"14-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1329130642\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"21\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("709", "348", "_wp_attached_file", "2018/05/16-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("710", "348", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:22:\"2018/05/16-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"16-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"16-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"16-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"16-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"16-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:22:\"16-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:22:\"16-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"20\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1329130532\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("711", "349", "_wp_attached_file", "2018/05/2012-02-13-10.29.59-800x600.jpg");
INSERT INTO `wp_postmeta` VALUES("712", "349", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:39:\"2018/05/2012-02-13-10.29.59-800x600.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"2012-02-13-10.29.59-800x600-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"2012-02-13-10.29.59-800x600-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:39:\"2012-02-13-10.29.59-800x600-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"2012-02-13-10.29.59-800x600-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"2012-02-13-10.29.59-800x600-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"2012-02-13-10.29.59-800x600-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"2012-02-13-10.29.59-800x600-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"GT-S5830T\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1329128999\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.55\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("713", "350", "_wp_attached_file", "2018/05/2012-02-13-10.31.18-800x600.jpg");
INSERT INTO `wp_postmeta` VALUES("714", "350", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:39:\"2018/05/2012-02-13-10.31.18-800x600.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"2012-02-13-10.31.18-800x600-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"2012-02-13-10.31.18-800x600-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:39:\"2012-02-13-10.31.18-800x600-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"2012-02-13-10.31.18-800x600-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"2012-02-13-10.31.18-800x600-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"2012-02-13-10.31.18-800x600-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"2012-02-13-10.31.18-800x600-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"GT-S5830T\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1329129078\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.55\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:18:\"0.0083333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("715", "351", "_wp_attached_file", "2018/05/2012-02-13-10.31.47-800x600.jpg");
INSERT INTO `wp_postmeta` VALUES("716", "351", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:39:\"2018/05/2012-02-13-10.31.47-800x600.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"2012-02-13-10.31.47-800x600-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"2012-02-13-10.31.47-800x600-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:39:\"2012-02-13-10.31.47-800x600-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"2012-02-13-10.31.47-800x600-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"2012-02-13-10.31.47-800x600-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"2012-02-13-10.31.47-800x600-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"2012-02-13-10.31.47-800x600-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"GT-S5830T\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1329129107\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.55\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:16:\"0.00418410041841\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("717", "352", "_wp_attached_file", "2018/05/IMG_0173-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("718", "352", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:28:\"2018/05/IMG_0173-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_0173-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_0173-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"IMG_0173-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_0173-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_0173-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_0173-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_0173-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1329130737\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("719", "353", "_wp_attached_file", "2018/05/IMG_0178-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("720", "353", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:28:\"2018/05/IMG_0178-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_0178-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_0178-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"IMG_0178-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_0178-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_0178-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_0178-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_0178-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1329130836\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"27\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("721", "339", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("722", "339", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("723", "339", "_et_pb_ab_subjects", "");
INSERT INTO `wp_postmeta` VALUES("724", "339", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"339\" /]");
INSERT INTO `wp_postmeta` VALUES("725", "355", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("726", "355", "_edit_lock", "1528622879:1");
INSERT INTO `wp_postmeta` VALUES("727", "355", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("728", "355", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("729", "355", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("730", "355", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("731", "355", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("732", "355", "_et_builder_version", "VB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("733", "355", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("734", "355", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("735", "355", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("736", "355", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("737", "355", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("738", "355", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("739", "358", "_wp_attached_file", "2018/05/305653_359854987383488_1833829054_n-1.jpg");
INSERT INTO `wp_postmeta` VALUES("740", "358", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:525;s:4:\"file\";s:49:\"2018/05/305653_359854987383488_1833829054_n-1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"305653_359854987383488_1833829054_n-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"305653_359854987383488_1833829054_n-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:49:\"305653_359854987383488_1833829054_n-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:49:\"305653_359854987383488_1833829054_n-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:49:\"305653_359854987383488_1833829054_n-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:49:\"305653_359854987383488_1833829054_n-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("741", "359", "_wp_attached_file", "2018/05/156515_359855010716819_1358822050_n.jpg");
INSERT INTO `wp_postmeta` VALUES("742", "359", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:47:\"2018/05/156515_359855010716819_1358822050_n.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"156515_359855010716819_1358822050_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"156515_359855010716819_1358822050_n-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:47:\"156515_359855010716819_1358822050_n-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:47:\"156515_359855010716819_1358822050_n-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:47:\"156515_359855010716819_1358822050_n-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:47:\"156515_359855010716819_1358822050_n-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:47:\"156515_359855010716819_1358822050_n-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("743", "360", "_wp_attached_file", "2018/05/398894_359855930716727_1584585568_n.jpg");
INSERT INTO `wp_postmeta` VALUES("744", "360", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:525;s:4:\"file\";s:47:\"2018/05/398894_359855930716727_1584585568_n.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"398894_359855930716727_1584585568_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"398894_359855930716727_1584585568_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:47:\"398894_359855930716727_1584585568_n-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:47:\"398894_359855930716727_1584585568_n-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:47:\"398894_359855930716727_1584585568_n-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:47:\"398894_359855930716727_1584585568_n-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("745", "361", "_wp_attached_file", "2018/05/399123_359854960716824_1745614817_n.jpg");
INSERT INTO `wp_postmeta` VALUES("746", "361", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:525;s:4:\"file\";s:47:\"2018/05/399123_359854960716824_1745614817_n.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"399123_359854960716824_1745614817_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"399123_359854960716824_1745614817_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:47:\"399123_359854960716824_1745614817_n-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:47:\"399123_359854960716824_1745614817_n-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:47:\"399123_359854960716824_1745614817_n-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:47:\"399123_359854960716824_1745614817_n-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("747", "362", "_wp_attached_file", "2018/05/403396_359855827383404_315308128_n.jpg");
INSERT INTO `wp_postmeta` VALUES("748", "362", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:525;s:4:\"file\";s:46:\"2018/05/403396_359855827383404_315308128_n.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"403396_359855827383404_315308128_n-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:46:\"403396_359855827383404_315308128_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"403396_359855827383404_315308128_n-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"403396_359855827383404_315308128_n-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"403396_359855827383404_315308128_n-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"403396_359855827383404_315308128_n-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("749", "363", "_wp_attached_file", "2018/05/522667_359855864050067_787378709_n.jpg");
INSERT INTO `wp_postmeta` VALUES("750", "363", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:525;s:4:\"file\";s:46:\"2018/05/522667_359855864050067_787378709_n.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"522667_359855864050067_787378709_n-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:46:\"522667_359855864050067_787378709_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"522667_359855864050067_787378709_n-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"522667_359855864050067_787378709_n-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"522667_359855864050067_787378709_n-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"522667_359855864050067_787378709_n-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("751", "364", "_wp_attached_file", "2018/05/535785_359854877383499_1699846534_n2.jpg");
INSERT INTO `wp_postmeta` VALUES("752", "364", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:525;s:4:\"file\";s:48:\"2018/05/535785_359854877383499_1699846534_n2.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"535785_359854877383499_1699846534_n2-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:48:\"535785_359854877383499_1699846534_n2-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:48:\"535785_359854877383499_1699846534_n2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:48:\"535785_359854877383499_1699846534_n2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:48:\"535785_359854877383499_1699846534_n2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:48:\"535785_359854877383499_1699846534_n2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("753", "365", "_wp_attached_file", "2018/05/536803_359854900716830_634889735_n.jpg");
INSERT INTO `wp_postmeta` VALUES("754", "365", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:525;s:4:\"file\";s:46:\"2018/05/536803_359854900716830_634889735_n.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"536803_359854900716830_634889735_n-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:46:\"536803_359854900716830_634889735_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"536803_359854900716830_634889735_n-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"536803_359854900716830_634889735_n-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"536803_359854900716830_634889735_n-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"536803_359854900716830_634889735_n-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("755", "366", "_wp_attached_file", "2018/05/558724_359854937383493_2042806738_n.jpg");
INSERT INTO `wp_postmeta` VALUES("756", "366", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:525;s:4:\"file\";s:47:\"2018/05/558724_359854937383493_2042806738_n.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"558724_359854937383493_2042806738_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"558724_359854937383493_2042806738_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:47:\"558724_359854937383493_2042806738_n-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:47:\"558724_359854937383493_2042806738_n-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:47:\"558724_359854937383493_2042806738_n-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:47:\"558724_359854937383493_2042806738_n-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("757", "367", "_wp_attached_file", "2018/05/564986_359855910716729_517072679_n.jpg");
INSERT INTO `wp_postmeta` VALUES("758", "367", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:525;s:4:\"file\";s:46:\"2018/05/564986_359855910716729_517072679_n.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"564986_359855910716729_517072679_n-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:46:\"564986_359855910716729_517072679_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"564986_359855910716729_517072679_n-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"564986_359855910716729_517072679_n-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"564986_359855910716729_517072679_n-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"564986_359855910716729_517072679_n-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("759", "355", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("760", "355", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("761", "355", "_et_pb_ab_subjects", "");
INSERT INTO `wp_postmeta` VALUES("762", "355", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"355\" /]");
INSERT INTO `wp_postmeta` VALUES("763", "369", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("764", "369", "_edit_lock", "1528622766:1");
INSERT INTO `wp_postmeta` VALUES("765", "369", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("766", "369", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("767", "369", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("768", "369", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("769", "369", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("770", "369", "_et_builder_version", "VB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("771", "369", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("772", "369", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("773", "369", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("774", "369", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("775", "369", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("776", "369", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("777", "372", "_wp_attached_file", "2018/05/425573_318529888182665_1787921071_n-1.jpg");
INSERT INTO `wp_postmeta` VALUES("778", "372", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:525;s:4:\"file\";s:49:\"2018/05/425573_318529888182665_1787921071_n-1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"425573_318529888182665_1787921071_n-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"425573_318529888182665_1787921071_n-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:49:\"425573_318529888182665_1787921071_n-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:49:\"425573_318529888182665_1787921071_n-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:49:\"425573_318529888182665_1787921071_n-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:49:\"425573_318529888182665_1787921071_n-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("779", "373", "_wp_attached_file", "2018/05/409315_318529751516012_492909972_n.jpg");
INSERT INTO `wp_postmeta` VALUES("780", "373", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:525;s:4:\"file\";s:46:\"2018/05/409315_318529751516012_492909972_n.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"409315_318529751516012_492909972_n-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:46:\"409315_318529751516012_492909972_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"409315_318529751516012_492909972_n-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"409315_318529751516012_492909972_n-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"409315_318529751516012_492909972_n-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"409315_318529751516012_492909972_n-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("781", "374", "_wp_attached_file", "2018/05/417328_318529808182673_143143435_n.jpg");
INSERT INTO `wp_postmeta` VALUES("782", "374", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:525;s:4:\"file\";s:46:\"2018/05/417328_318529808182673_143143435_n.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"417328_318529808182673_143143435_n-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:46:\"417328_318529808182673_143143435_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"417328_318529808182673_143143435_n-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"417328_318529808182673_143143435_n-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"417328_318529808182673_143143435_n-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"417328_318529808182673_143143435_n-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("783", "375", "_wp_attached_file", "2018/05/417983_318529854849335_53936863_n.jpg");
INSERT INTO `wp_postmeta` VALUES("784", "375", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:525;s:4:\"file\";s:45:\"2018/05/417983_318529854849335_53936863_n.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"417983_318529854849335_53936863_n-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:\"417983_318529854849335_53936863_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:45:\"417983_318529854849335_53936863_n-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:45:\"417983_318529854849335_53936863_n-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:45:\"417983_318529854849335_53936863_n-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:45:\"417983_318529854849335_53936863_n-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("785", "369", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("786", "369", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("787", "369", "_et_pb_ab_subjects", "");
INSERT INTO `wp_postmeta` VALUES("788", "369", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"369\" /]");
INSERT INTO `wp_postmeta` VALUES("789", "378", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("790", "378", "_edit_lock", "1528622910:1");
INSERT INTO `wp_postmeta` VALUES("791", "378", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("792", "378", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("793", "378", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("794", "378", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("795", "378", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("796", "378", "_et_builder_version", "VB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("797", "378", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("798", "378", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("799", "378", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("800", "378", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("801", "378", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("802", "378", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("803", "381", "_wp_attached_file", "2018/05/399949_317440688291585_1511337278_n-1.jpg");
INSERT INTO `wp_postmeta` VALUES("804", "381", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:525;s:4:\"file\";s:49:\"2018/05/399949_317440688291585_1511337278_n-1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"399949_317440688291585_1511337278_n-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"399949_317440688291585_1511337278_n-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:49:\"399949_317440688291585_1511337278_n-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:49:\"399949_317440688291585_1511337278_n-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:49:\"399949_317440688291585_1511337278_n-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:49:\"399949_317440688291585_1511337278_n-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("805", "382", "_wp_attached_file", "2018/05/395254_317440711624916_1099705238_n.jpg");
INSERT INTO `wp_postmeta` VALUES("806", "382", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:525;s:4:\"file\";s:47:\"2018/05/395254_317440711624916_1099705238_n.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"395254_317440711624916_1099705238_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"395254_317440711624916_1099705238_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:47:\"395254_317440711624916_1099705238_n-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:47:\"395254_317440711624916_1099705238_n-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:47:\"395254_317440711624916_1099705238_n-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:47:\"395254_317440711624916_1099705238_n-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("807", "383", "_wp_attached_file", "2018/05/400973_317440561624931_1471458582_n.jpg");
INSERT INTO `wp_postmeta` VALUES("808", "383", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:525;s:4:\"file\";s:47:\"2018/05/400973_317440561624931_1471458582_n.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"400973_317440561624931_1471458582_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"400973_317440561624931_1471458582_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:47:\"400973_317440561624931_1471458582_n-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:47:\"400973_317440561624931_1471458582_n-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:47:\"400973_317440561624931_1471458582_n-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:47:\"400973_317440561624931_1471458582_n-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("809", "384", "_wp_attached_file", "2018/05/422275_317440648291589_232537411_n.jpg");
INSERT INTO `wp_postmeta` VALUES("810", "384", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:525;s:4:\"file\";s:46:\"2018/05/422275_317440648291589_232537411_n.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"422275_317440648291589_232537411_n-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:46:\"422275_317440648291589_232537411_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"422275_317440648291589_232537411_n-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"422275_317440648291589_232537411_n-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"422275_317440648291589_232537411_n-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"422275_317440648291589_232537411_n-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("811", "385", "_wp_attached_file", "2018/05/423007_317440608291593_1334194324_n.jpg");
INSERT INTO `wp_postmeta` VALUES("812", "385", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:525;s:4:\"file\";s:47:\"2018/05/423007_317440608291593_1334194324_n.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"423007_317440608291593_1334194324_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"423007_317440608291593_1334194324_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:47:\"423007_317440608291593_1334194324_n-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:47:\"423007_317440608291593_1334194324_n-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:47:\"423007_317440608291593_1334194324_n-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:47:\"423007_317440608291593_1334194324_n-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("813", "386", "_wp_attached_file", "2018/05/429042_317440628291591_807137394_n.jpg");
INSERT INTO `wp_postmeta` VALUES("814", "386", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:525;s:4:\"file\";s:46:\"2018/05/429042_317440628291591_807137394_n.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"429042_317440628291591_807137394_n-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:46:\"429042_317440628291591_807137394_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"429042_317440628291591_807137394_n-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"429042_317440628291591_807137394_n-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"429042_317440628291591_807137394_n-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"429042_317440628291591_807137394_n-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("815", "378", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("816", "378", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("817", "378", "_et_pb_ab_subjects", "");
INSERT INTO `wp_postmeta` VALUES("818", "378", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"378\" /]");
INSERT INTO `wp_postmeta` VALUES("819", "389", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("820", "389", "_edit_lock", "1528622817:1");
INSERT INTO `wp_postmeta` VALUES("821", "389", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("822", "389", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("823", "389", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("824", "389", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("825", "389", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("826", "389", "_et_builder_version", "VB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("827", "389", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("828", "389", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("829", "389", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("830", "389", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("831", "389", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("832", "389", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("833", "392", "_wp_attached_file", "2018/05/1.jpg");
INSERT INTO `wp_postmeta` VALUES("834", "392", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:536;s:4:\"file\";s:13:\"2018/05/1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"1-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"1-768x515.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:515;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:13:\"1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:13:\"1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:13:\"1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:13:\"1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("835", "393", "_wp_attached_file", "2018/05/2.jpg");
INSERT INTO `wp_postmeta` VALUES("836", "393", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:536;s:4:\"file\";s:13:\"2018/05/2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"2-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"2-768x515.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:515;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:13:\"2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:13:\"2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:13:\"2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:13:\"2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("837", "394", "_wp_attached_file", "2018/05/4.jpg");
INSERT INTO `wp_postmeta` VALUES("838", "394", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:536;s:4:\"file\";s:13:\"2018/05/4.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"4-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"4-768x515.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:515;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:13:\"4-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:13:\"4-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:13:\"4-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:13:\"4-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("839", "395", "_wp_attached_file", "2018/05/7.jpg");
INSERT INTO `wp_postmeta` VALUES("840", "395", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:536;s:4:\"file\";s:13:\"2018/05/7.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"7-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:13:\"7-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"7-768x515.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:515;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:13:\"7-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:13:\"7-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:13:\"7-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:13:\"7-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("841", "396", "_wp_attached_file", "2018/05/8.jpg");
INSERT INTO `wp_postmeta` VALUES("842", "396", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:531;s:4:\"file\";s:13:\"2018/05/8.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"8-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:13:\"8-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"8-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:13:\"8-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:13:\"8-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:13:\"8-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:13:\"8-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("843", "397", "_wp_attached_file", "2018/05/9.jpg");
INSERT INTO `wp_postmeta` VALUES("844", "397", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:530;s:4:\"file\";s:13:\"2018/05/9.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"9-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:13:\"9-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"9-768x509.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:509;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:13:\"9-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:13:\"9-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:13:\"9-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:13:\"9-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("845", "398", "_wp_attached_file", "2018/05/10.jpg");
INSERT INTO `wp_postmeta` VALUES("846", "398", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:536;s:4:\"file\";s:14:\"2018/05/10.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"10-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:14:\"10-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"10-768x515.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:515;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:14:\"10-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:14:\"10-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:14:\"10-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:14:\"10-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("847", "399", "_wp_attached_file", "2018/05/13.jpg");
INSERT INTO `wp_postmeta` VALUES("848", "399", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:532;s:4:\"file\";s:14:\"2018/05/13.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"13-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:14:\"13-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"13-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:14:\"13-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:14:\"13-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:14:\"13-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:14:\"13-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("849", "400", "_wp_attached_file", "2018/05/outdoor-3.jpg");
INSERT INTO `wp_postmeta` VALUES("850", "400", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:21:\"2018/05/outdoor-3.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"outdoor-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"outdoor-3-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"outdoor-3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"outdoor-3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"outdoor-3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"outdoor-3-400x480.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:480;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("851", "389", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("852", "389", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("853", "389", "_et_pb_ab_subjects", "");
INSERT INTO `wp_postmeta` VALUES("854", "389", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"389\" /]");
INSERT INTO `wp_postmeta` VALUES("859", "414", "_wp_attached_file", "2018/06/Kensingtons-Garden-Residence.jpg");
INSERT INTO `wp_postmeta` VALUES("860", "414", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:456;s:6:\"height\";i:342;s:4:\"file\";s:40:\"2018/06/Kensingtons-Garden-Residence.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Kensingtons-Garden-Residence-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Kensingtons-Garden-Residence-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"Kensingtons-Garden-Residence-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"Kensingtons-Garden-Residence-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"Kensingtons-Garden-Residence-400x342.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:342;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("861", "426", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("862", "426", "_edit_lock", "1528623592:1");
INSERT INTO `wp_postmeta` VALUES("863", "426", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("864", "426", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("865", "426", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("866", "426", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("867", "426", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("868", "426", "_et_builder_version", "VB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("869", "426", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("870", "426", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("871", "426", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("872", "426", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("873", "426", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("874", "426", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("875", "426", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("876", "426", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("877", "426", "_et_pb_ab_subjects", "");
INSERT INTO `wp_postmeta` VALUES("878", "426", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"426\" /]");
INSERT INTO `wp_postmeta` VALUES("879", "433", "_wp_attached_file", "2018/06/4-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("880", "433", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:21:\"2018/06/4-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"4-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"4-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"4-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"4-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"4-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"4-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"4-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1329217848\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("881", "434", "_wp_attached_file", "2018/06/7-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("882", "434", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:21:\"2018/06/7-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"7-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"7-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"7-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"7-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"7-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"7-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"7-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1329217903\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("883", "435", "_wp_attached_file", "2018/06/12-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("884", "435", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:22:\"2018/06/12-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"12-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"12-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"12-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"12-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"12-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:22:\"12-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:22:\"12-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1329218108\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("885", "436", "_wp_attached_file", "2018/06/13-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("886", "436", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:22:\"2018/06/13-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"13-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"13-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"13-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"13-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"13-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:22:\"13-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:22:\"13-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1329218407\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("887", "437", "_wp_attached_file", "2018/06/IMG_0209-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("888", "437", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:28:\"2018/06/IMG_0209-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_0209-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_0209-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"IMG_0209-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_0209-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_0209-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_0209-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_0209-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1329217848\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("889", "438", "_wp_attached_file", "2018/06/IMG_0214-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("890", "438", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:28:\"2018/06/IMG_0214-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_0214-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_0214-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"IMG_0214-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_0214-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_0214-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_0214-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_0214-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1329217896\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("891", "439", "_wp_attached_file", "2018/06/IMG_0224-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("892", "439", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:28:\"2018/06/IMG_0224-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_0224-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_0224-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"IMG_0224-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_0224-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_0224-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_0224-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_0224-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1329218065\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("893", "440", "_wp_attached_file", "2018/06/IMG_0229-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("894", "440", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:28:\"2018/06/IMG_0229-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_0229-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_0229-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"IMG_0229-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_0229-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_0229-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_0229-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_0229-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1329218117\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("895", "441", "_wp_attached_file", "2018/06/IMG_0231-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("896", "441", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:28:\"2018/06/IMG_0231-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_0231-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_0231-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"IMG_0231-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_0231-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_0231-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_0231-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_0231-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1329218158\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("897", "442", "_wp_attached_file", "2018/06/IMG_0234-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("898", "442", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:28:\"2018/06/IMG_0234-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_0234-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_0234-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"IMG_0234-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_0234-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_0234-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_0234-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_0234-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1329218205\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("899", "443", "_wp_attached_file", "2018/06/IMG_0237-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("900", "443", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:28:\"2018/06/IMG_0237-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_0237-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_0237-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"IMG_0237-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_0237-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_0237-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_0237-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_0237-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1329218294\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("901", "444", "_wp_attached_file", "2018/06/IMG_0240-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("902", "444", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:28:\"2018/06/IMG_0240-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_0240-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_0240-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"IMG_0240-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_0240-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_0240-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_0240-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_0240-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1329218407\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("903", "448", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("904", "448", "_edit_lock", "1528623858:1");
INSERT INTO `wp_postmeta` VALUES("905", "448", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("906", "448", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("907", "448", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("908", "448", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("909", "448", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("910", "448", "_et_builder_version", "VB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("911", "448", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("912", "448", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("913", "448", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("914", "448", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("915", "448", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("916", "448", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("917", "452", "_wp_attached_file", "2018/06/IMG_6058-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("918", "452", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:28:\"2018/06/IMG_6058-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_6058-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_6058-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"IMG_6058-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_6058-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_6058-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_6058-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_6058-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:29:\"www.facebook.com/kensohstudio\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1477492140\";s:9:\"copyright\";s:29:\"www.facebook.com/kensohstudio\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("919", "453", "_wp_attached_file", "2018/06/IMG_6071-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("920", "453", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:28:\"2018/06/IMG_6071-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_6071-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_6071-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"IMG_6071-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_6071-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_6071-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_6071-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_6071-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:29:\"www.facebook.com/kensohstudio\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1477492140\";s:9:\"copyright\";s:29:\"www.facebook.com/kensohstudio\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("921", "454", "_wp_attached_file", "2018/06/IMG_6089-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("922", "454", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:28:\"2018/06/IMG_6089-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_6089-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_6089-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"IMG_6089-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_6089-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_6089-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_6089-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_6089-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:29:\"www.facebook.com/kensohstudio\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1477492140\";s:9:\"copyright\";s:29:\"www.facebook.com/kensohstudio\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("923", "455", "_wp_attached_file", "2018/06/IMG_6099-HDR-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("924", "455", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:32:\"2018/06/IMG_6099-HDR-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"IMG_6099-HDR-800x533-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:\"IMG_6099-HDR-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"IMG_6099-HDR-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"IMG_6099-HDR-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"IMG_6099-HDR-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"IMG_6099-HDR-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"IMG_6099-HDR-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:29:\"www.facebook.com/kensohstudio\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1477492140\";s:9:\"copyright\";s:29:\"www.facebook.com/kensohstudio\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("925", "456", "_wp_attached_file", "2018/06/IMG_6106-HDR-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("926", "456", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:32:\"2018/06/IMG_6106-HDR-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"IMG_6106-HDR-800x533-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:\"IMG_6106-HDR-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"IMG_6106-HDR-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"IMG_6106-HDR-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"IMG_6106-HDR-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"IMG_6106-HDR-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"IMG_6106-HDR-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:29:\"www.facebook.com/kensohstudio\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1477492020\";s:9:\"copyright\";s:29:\"www.facebook.com/kensohstudio\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("927", "457", "_wp_attached_file", "2018/06/IMG_6155-HDR-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("928", "457", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:32:\"2018/06/IMG_6155-HDR-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"IMG_6155-HDR-800x533-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:\"IMG_6155-HDR-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"IMG_6155-HDR-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"IMG_6155-HDR-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"IMG_6155-HDR-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"IMG_6155-HDR-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"IMG_6155-HDR-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:29:\"www.facebook.com/kensohstudio\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1477492020\";s:9:\"copyright\";s:29:\"www.facebook.com/kensohstudio\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("929", "458", "_wp_attached_file", "2018/06/IMG_6169-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("930", "458", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:28:\"2018/06/IMG_6169-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_6169-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_6169-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"IMG_6169-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_6169-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_6169-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_6169-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_6169-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:29:\"www.facebook.com/kensohstudio\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1477492020\";s:9:\"copyright\";s:29:\"www.facebook.com/kensohstudio\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("931", "459", "_wp_attached_file", "2018/06/IMG_6211-800x533-1.jpg");
INSERT INTO `wp_postmeta` VALUES("932", "459", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:30:\"2018/06/IMG_6211-800x533-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"IMG_6211-800x533-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"IMG_6211-800x533-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"IMG_6211-800x533-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"IMG_6211-800x533-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"IMG_6211-800x533-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"IMG_6211-800x533-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"IMG_6211-800x533-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:29:\"www.facebook.com/kensohstudio\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1477492020\";s:9:\"copyright\";s:29:\"www.facebook.com/kensohstudio\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("933", "448", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("934", "448", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("935", "448", "_et_pb_ab_subjects", "");
INSERT INTO `wp_postmeta` VALUES("936", "448", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"448\" /]");
INSERT INTO `wp_postmeta` VALUES("937", "462", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("938", "462", "_edit_lock", "1528624152:1");
INSERT INTO `wp_postmeta` VALUES("939", "462", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("940", "462", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("941", "462", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("942", "462", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("943", "462", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("944", "462", "_et_builder_version", "VB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("945", "462", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("946", "462", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("947", "462", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("948", "462", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("949", "462", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("950", "462", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("951", "466", "_wp_attached_file", "2018/06/Kensingtons-Garden-Residence-2.jpg");
INSERT INTO `wp_postmeta` VALUES("952", "466", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:456;s:6:\"height\";i:342;s:4:\"file\";s:42:\"2018/06/Kensingtons-Garden-Residence-2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Kensingtons-Garden-Residence-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Kensingtons-Garden-Residence-2-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:42:\"Kensingtons-Garden-Residence-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:42:\"Kensingtons-Garden-Residence-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:42:\"Kensingtons-Garden-Residence-2-400x342.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:342;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("953", "467", "_wp_attached_file", "2018/06/Kensingtons-Garden-Residence-3.jpg");
INSERT INTO `wp_postmeta` VALUES("954", "467", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:456;s:6:\"height\";i:342;s:4:\"file\";s:42:\"2018/06/Kensingtons-Garden-Residence-3.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Kensingtons-Garden-Residence-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Kensingtons-Garden-Residence-3-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:42:\"Kensingtons-Garden-Residence-3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:42:\"Kensingtons-Garden-Residence-3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:42:\"Kensingtons-Garden-Residence-3-400x342.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:342;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("955", "468", "_wp_attached_file", "2018/06/Kensingtons-Garden-Residence-4.jpg");
INSERT INTO `wp_postmeta` VALUES("956", "468", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:456;s:6:\"height\";i:342;s:4:\"file\";s:42:\"2018/06/Kensingtons-Garden-Residence-4.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Kensingtons-Garden-Residence-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Kensingtons-Garden-Residence-4-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:42:\"Kensingtons-Garden-Residence-4-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:42:\"Kensingtons-Garden-Residence-4-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:42:\"Kensingtons-Garden-Residence-4-400x342.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:342;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("957", "469", "_wp_attached_file", "2018/06/Kensingtons-Garden-Residence-5.jpg");
INSERT INTO `wp_postmeta` VALUES("958", "469", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:456;s:6:\"height\";i:342;s:4:\"file\";s:42:\"2018/06/Kensingtons-Garden-Residence-5.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Kensingtons-Garden-Residence-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Kensingtons-Garden-Residence-5-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:42:\"Kensingtons-Garden-Residence-5-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:42:\"Kensingtons-Garden-Residence-5-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:42:\"Kensingtons-Garden-Residence-5-400x342.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:342;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("959", "462", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("960", "462", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("961", "462", "_et_pb_ab_subjects", "");
INSERT INTO `wp_postmeta` VALUES("962", "462", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"462\" /]");
INSERT INTO `wp_postmeta` VALUES("963", "474", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("964", "474", "_edit_lock", "1532432834:1");
INSERT INTO `wp_postmeta` VALUES("965", "474", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("966", "474", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("967", "474", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("968", "474", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("969", "474", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("970", "474", "_et_builder_version", "VB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("971", "474", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("972", "474", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("973", "474", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("974", "474", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("975", "474", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("976", "474", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("977", "478", "_wp_attached_file", "2018/06/EL-1-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("978", "478", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:24:\"2018/06/EL-1-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"EL-1-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"EL-1-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"EL-1-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"EL-1-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"EL-1-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"EL-1-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"EL-1-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1334849430\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("979", "479", "_wp_attached_file", "2018/06/EL-3-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("980", "479", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:24:\"2018/06/EL-3-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"EL-3-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"EL-3-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"EL-3-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"EL-3-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"EL-3-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"EL-3-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"EL-3-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1334849483\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("981", "480", "_wp_attached_file", "2018/06/IMG_0590-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("982", "480", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:28:\"2018/06/IMG_0590-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_0590-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_0590-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"IMG_0590-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_0590-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_0590-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_0590-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_0590-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1333560514\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("983", "481", "_wp_attached_file", "2018/06/IMG_0591-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("984", "481", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:28:\"2018/06/IMG_0591-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_0591-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_0591-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"IMG_0591-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_0591-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_0591-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_0591-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_0591-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1333560520\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("985", "482", "_wp_attached_file", "2018/06/IMG_0597-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("986", "482", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:28:\"2018/06/IMG_0597-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_0597-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_0597-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"IMG_0597-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_0597-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_0597-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_0597-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_0597-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1333560570\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("987", "483", "_wp_attached_file", "2018/06/IMG_0599-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("988", "483", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:28:\"2018/06/IMG_0599-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_0599-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_0599-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"IMG_0599-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_0599-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_0599-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_0599-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_0599-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1333560604\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("989", "484", "_wp_attached_file", "2018/06/IMG_0606-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("990", "484", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:28:\"2018/06/IMG_0606-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_0606-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_0606-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"IMG_0606-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_0606-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_0606-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_0606-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_0606-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1333560700\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("991", "485", "_wp_attached_file", "2018/06/IMG_0608-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("992", "485", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:28:\"2018/06/IMG_0608-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_0608-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_0608-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"IMG_0608-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_0608-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_0608-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_0608-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_0608-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1333560704\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("993", "486", "_wp_attached_file", "2018/06/IMG_0610-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("994", "486", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:28:\"2018/06/IMG_0610-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_0610-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_0610-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"IMG_0610-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_0610-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_0610-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_0610-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_0610-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1333560714\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("995", "487", "_wp_attached_file", "2018/06/IMG_0612-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("996", "487", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:28:\"2018/06/IMG_0612-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_0612-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_0612-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"IMG_0612-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_0612-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_0612-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_0612-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_0612-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1333560759\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("997", "488", "_wp_attached_file", "2018/06/IMG_0621-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("998", "488", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:28:\"2018/06/IMG_0621-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_0621-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_0621-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"IMG_0621-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_0621-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_0621-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_0621-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_0621-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1333561801\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("999", "489", "_wp_attached_file", "2018/06/IMG_0626-800x492.jpg");
INSERT INTO `wp_postmeta` VALUES("1000", "489", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:492;s:4:\"file\";s:28:\"2018/06/IMG_0626-800x492.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_0626-800x492-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_0626-800x492-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"IMG_0626-800x492-768x472.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:472;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_0626-800x492-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_0626-800x492-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_0626-800x492-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_0626-800x492-400x492.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:492;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1334849459\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"21\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1001", "490", "_wp_attached_file", "2018/06/Bath-1-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1002", "490", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:26:\"2018/06/Bath-1-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Bath-1-800x533-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:\"Bath-1-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"Bath-1-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:26:\"Bath-1-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:26:\"Bath-1-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:26:\"Bath-1-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:26:\"Bath-1-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1333560472\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1003", "491", "_wp_attached_file", "2018/06/IMG_0615-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1004", "491", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:28:\"2018/06/IMG_0615-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_0615-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_0615-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"IMG_0615-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_0615-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_0615-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_0615-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_0615-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1333560869\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"53\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1005", "492", "_wp_attached_file", "2018/06/IMG_0593-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1006", "492", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:28:\"2018/06/IMG_0593-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_0593-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_0593-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"IMG_0593-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_0593-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_0593-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_0593-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_0593-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1333560532\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"53\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:8:\"0.003125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1007", "474", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("1008", "474", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("1009", "474", "_et_pb_ab_subjects", "");
INSERT INTO `wp_postmeta` VALUES("1010", "474", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"474\" /]");
INSERT INTO `wp_postmeta` VALUES("1011", "501", "_wp_attached_file", "2018/06/Battunga-Residence.jpg");
INSERT INTO `wp_postmeta` VALUES("1012", "501", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:30:\"2018/06/Battunga-Residence.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Battunga-Residence-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:\"Battunga-Residence-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"Battunga-Residence-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"Battunga-Residence-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"Battunga-Residence-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"Battunga-Residence-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"Battunga-Residence-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1013", "502", "_wp_attached_file", "2018/06/Echunga-Residence.jpg");
INSERT INTO `wp_postmeta` VALUES("1014", "502", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:29:\"2018/06/Echunga-Residence.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Echunga-Residence-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Echunga-Residence-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"Echunga-Residence-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:29:\"Echunga-Residence-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:29:\"Echunga-Residence-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:29:\"Echunga-Residence-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:29:\"Echunga-Residence-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1015", "503", "_wp_attached_file", "2018/06/Jupiter-Creek-Residence.jpg");
INSERT INTO `wp_postmeta` VALUES("1016", "503", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:35:\"2018/06/Jupiter-Creek-Residence.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Jupiter-Creek-Residence-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:\"Jupiter-Creek-Residence-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"Jupiter-Creek-Residence-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"Jupiter-Creek-Residence-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"Jupiter-Creek-Residence-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"Jupiter-Creek-Residence-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"Jupiter-Creek-Residence-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1017", "504", "_wp_attached_file", "2018/06/Kensingtons-Garden-Residence-6.jpg");
INSERT INTO `wp_postmeta` VALUES("1018", "504", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:42:\"2018/06/Kensingtons-Garden-Residence-6.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Kensingtons-Garden-Residence-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Kensingtons-Garden-Residence-6-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"Kensingtons-Garden-Residence-6-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:42:\"Kensingtons-Garden-Residence-6-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:42:\"Kensingtons-Garden-Residence-6-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:42:\"Kensingtons-Garden-Residence-6-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:42:\"Kensingtons-Garden-Residence-6-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1019", "510", "_wp_attached_file", "2018/06/The-Lane-Winery.jpg");
INSERT INTO `wp_postmeta` VALUES("1020", "510", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:27:\"2018/06/The-Lane-Winery.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"The-Lane-Winery-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:\"The-Lane-Winery-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"The-Lane-Winery-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"The-Lane-Winery-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"The-Lane-Winery-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"The-Lane-Winery-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:27:\"The-Lane-Winery-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1021", "511", "_wp_attached_file", "2018/06/The-Haus-Hahndorf.jpg");
INSERT INTO `wp_postmeta` VALUES("1022", "511", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:29:\"2018/06/The-Haus-Hahndorf.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"The-Haus-Hahndorf-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"The-Haus-Hahndorf-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"The-Haus-Hahndorf-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:29:\"The-Haus-Hahndorf-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:29:\"The-Haus-Hahndorf-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:29:\"The-Haus-Hahndorf-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:29:\"The-Haus-Hahndorf-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1023", "512", "_wp_attached_file", "2018/06/The-Haus-Studio-Apartments.jpg");
INSERT INTO `wp_postmeta` VALUES("1024", "512", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:38:\"2018/06/The-Haus-Studio-Apartments.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"The-Haus-Studio-Apartments-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"The-Haus-Studio-Apartments-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"The-Haus-Studio-Apartments-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:38:\"The-Haus-Studio-Apartments-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:38:\"The-Haus-Studio-Apartments-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:38:\"The-Haus-Studio-Apartments-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:38:\"The-Haus-Studio-Apartments-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1107", "551", "_wp_attached_file", "2018/06/K1-Winery-2.jpg");
INSERT INTO `wp_postmeta` VALUES("1108", "551", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:23:\"2018/06/K1-Winery-2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"K1-Winery-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"K1-Winery-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"K1-Winery-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"K1-Winery-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"K1-Winery-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:23:\"K1-Winery-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:23:\"K1-Winery-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1085", "541", "_wp_attached_file", "2018/06/Inavogue-Showroom-2.jpg");
INSERT INTO `wp_postmeta` VALUES("1086", "541", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:31:\"2018/06/Inavogue-Showroom-2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Inavogue-Showroom-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Inavogue-Showroom-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"Inavogue-Showroom-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"Inavogue-Showroom-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"Inavogue-Showroom-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:31:\"Inavogue-Showroom-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:31:\"Inavogue-Showroom-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1139", "568", "_wp_attached_file", "2018/06/Pulteney-Plaza-Apartments-2.jpg");
INSERT INTO `wp_postmeta` VALUES("1140", "568", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:39:\"2018/06/Pulteney-Plaza-Apartments-2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Pulteney-Plaza-Apartments-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Pulteney-Plaza-Apartments-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"Pulteney-Plaza-Apartments-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"Pulteney-Plaza-Apartments-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"Pulteney-Plaza-Apartments-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"Pulteney-Plaza-Apartments-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"Pulteney-Plaza-Apartments-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1031", "516", "_wp_attached_file", "2018/06/Rivercorp-Monarto-Apple-Processing-Plant.jpg");
INSERT INTO `wp_postmeta` VALUES("1032", "516", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:52:\"2018/06/Rivercorp-Monarto-Apple-Processing-Plant.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"Rivercorp-Monarto-Apple-Processing-Plant-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:52:\"Rivercorp-Monarto-Apple-Processing-Plant-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:52:\"Rivercorp-Monarto-Apple-Processing-Plant-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:52:\"Rivercorp-Monarto-Apple-Processing-Plant-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:52:\"Rivercorp-Monarto-Apple-Processing-Plant-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:52:\"Rivercorp-Monarto-Apple-Processing-Plant-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:52:\"Rivercorp-Monarto-Apple-Processing-Plant-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1066", "532", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:32:\"2018/06/Elders-Strathalbyn-2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Elders-Strathalbyn-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Elders-Strathalbyn-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Elders-Strathalbyn-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Elders-Strathalbyn-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Elders-Strathalbyn-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Elders-Strathalbyn-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Elders-Strathalbyn-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1035", "519", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1036", "519", "_edit_lock", "1528626825:1");
INSERT INTO `wp_postmeta` VALUES("1037", "519", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("1038", "519", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("1039", "519", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("1040", "519", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("1041", "519", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("1042", "519", "_et_builder_version", "VB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("1043", "519", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("1044", "519", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("1045", "519", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("1046", "519", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("1047", "519", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("1048", "519", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("1049", "522", "_wp_attached_file", "2018/06/ALDI-800x534.jpg");
INSERT INTO `wp_postmeta` VALUES("1050", "522", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:534;s:4:\"file\";s:24:\"2018/06/ALDI-800x534.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"ALDI-800x534-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"ALDI-800x534-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"ALDI-800x534-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"ALDI-800x534-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"ALDI-800x534-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"ALDI-800x534-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"ALDI-800x534-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D800\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1456864151\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1051", "523", "_wp_attached_file", "2018/06/Barker-Plaza-Entrance-800x534.jpg");
INSERT INTO `wp_postmeta` VALUES("1052", "523", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:534;s:4:\"file\";s:41:\"2018/06/Barker-Plaza-Entrance-800x534.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Barker-Plaza-Entrance-800x534-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Barker-Plaza-Entrance-800x534-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"Barker-Plaza-Entrance-800x534-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"Barker-Plaza-Entrance-800x534-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"Barker-Plaza-Entrance-800x534-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"Barker-Plaza-Entrance-800x534-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"Barker-Plaza-Entrance-800x534-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D800\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1456859221\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"21\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1053", "524", "_wp_attached_file", "2018/06/Barker-Plaza-Mall-ALDI-800x534.jpg");
INSERT INTO `wp_postmeta` VALUES("1054", "524", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:534;s:4:\"file\";s:42:\"2018/06/Barker-Plaza-Mall-ALDI-800x534.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Barker-Plaza-Mall-ALDI-800x534-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Barker-Plaza-Mall-ALDI-800x534-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"Barker-Plaza-Mall-ALDI-800x534-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:42:\"Barker-Plaza-Mall-ALDI-800x534-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:42:\"Barker-Plaza-Mall-ALDI-800x534-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:42:\"Barker-Plaza-Mall-ALDI-800x534-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:42:\"Barker-Plaza-Mall-ALDI-800x534-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D800\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1456861384\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"15\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1055", "525", "_wp_attached_file", "2018/06/Barker-Plaza-Mall-800x534.jpg");
INSERT INTO `wp_postmeta` VALUES("1056", "525", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:534;s:4:\"file\";s:37:\"2018/06/Barker-Plaza-Mall-800x534.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Barker-Plaza-Mall-800x534-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Barker-Plaza-Mall-800x534-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"Barker-Plaza-Mall-800x534-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:37:\"Barker-Plaza-Mall-800x534-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:37:\"Barker-Plaza-Mall-800x534-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:37:\"Barker-Plaza-Mall-800x534-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:37:\"Barker-Plaza-Mall-800x534-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D800\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1456862335\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1057", "519", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("1058", "519", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("1059", "519", "_et_pb_ab_subjects", "");
INSERT INTO `wp_postmeta` VALUES("1060", "519", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"519\" /]");
INSERT INTO `wp_postmeta` VALUES("1061", "530", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1062", "530", "_edit_lock", "1528627290:1");
INSERT INTO `wp_postmeta` VALUES("1065", "532", "_wp_attached_file", "2018/06/Elders-Strathalbyn-2.jpg");
INSERT INTO `wp_postmeta` VALUES("1067", "530", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("1068", "530", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("1069", "530", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("1070", "530", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("1071", "530", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("1072", "530", "_et_builder_version", "VB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("1073", "530", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("1074", "530", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("1075", "530", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("1076", "530", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("1077", "530", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("1078", "530", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("1079", "530", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("1080", "530", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("1081", "530", "_et_pb_ab_subjects", "");
INSERT INTO `wp_postmeta` VALUES("1082", "530", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"530\" /]");
INSERT INTO `wp_postmeta` VALUES("1083", "540", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1084", "540", "_edit_lock", "1528627567:1");
INSERT INTO `wp_postmeta` VALUES("1087", "540", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("1088", "540", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("1089", "540", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("1090", "540", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("1091", "540", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("1092", "540", "_et_builder_version", "VB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("1093", "540", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("1094", "540", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("1095", "540", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("1096", "540", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("1097", "540", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("1098", "540", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("1099", "544", "_wp_attached_file", "2018/06/Inavogue-Showroom-2-1.jpg");
INSERT INTO `wp_postmeta` VALUES("1100", "544", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:33:\"2018/06/Inavogue-Showroom-2-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Inavogue-Showroom-2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Inavogue-Showroom-2-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Inavogue-Showroom-2-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Inavogue-Showroom-2-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Inavogue-Showroom-2-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"Inavogue-Showroom-2-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"Inavogue-Showroom-2-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1101", "540", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("1102", "540", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("1103", "540", "_et_pb_ab_subjects", "");
INSERT INTO `wp_postmeta` VALUES("1104", "540", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"540\" /]");
INSERT INTO `wp_postmeta` VALUES("1105", "550", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1106", "550", "_edit_lock", "1528628259:1");
INSERT INTO `wp_postmeta` VALUES("1109", "550", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("1110", "550", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("1111", "550", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("1112", "550", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("1113", "550", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("1114", "550", "_et_builder_version", "VB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("1115", "550", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("1116", "550", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("1117", "550", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("1118", "550", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("1119", "550", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("1120", "550", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("1121", "554", "_wp_attached_file", "2018/06/K1-Winery-2-1.jpg");
INSERT INTO `wp_postmeta` VALUES("1122", "554", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:25:\"2018/06/K1-Winery-2-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"K1-Winery-2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"K1-Winery-2-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"K1-Winery-2-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:25:\"K1-Winery-2-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:25:\"K1-Winery-2-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:25:\"K1-Winery-2-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:25:\"K1-Winery-2-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1123", "555", "_wp_attached_file", "2018/06/K1-Winery-3.jpg");
INSERT INTO `wp_postmeta` VALUES("1124", "555", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:200;s:6:\"height\";i:134;s:4:\"file\";s:23:\"2018/06/K1-Winery-3.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"K1-Winery-3-150x134.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1125", "556", "_wp_attached_file", "2018/06/K1-Winery-4.jpg");
INSERT INTO `wp_postmeta` VALUES("1126", "556", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:200;s:6:\"height\";i:134;s:4:\"file\";s:23:\"2018/06/K1-Winery-4.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"K1-Winery-4-150x134.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1127", "557", "_wp_attached_file", "2018/06/K1-Winery-5.jpg");
INSERT INTO `wp_postmeta` VALUES("1128", "557", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:200;s:6:\"height\";i:134;s:4:\"file\";s:23:\"2018/06/K1-Winery-5.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"K1-Winery-5-150x134.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1129", "550", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("1130", "550", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("1131", "550", "_et_pb_ab_subjects", "");
INSERT INTO `wp_postmeta` VALUES("1132", "550", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"550\" /]");
INSERT INTO `wp_postmeta` VALUES("1133", "559", "_wp_attached_file", "2018/06/K1-Winery-3-1.jpg");
INSERT INTO `wp_postmeta` VALUES("1134", "559", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:200;s:6:\"height\";i:134;s:4:\"file\";s:25:\"2018/06/K1-Winery-3-1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"K1-Winery-3-1-150x134.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1135", "561", "_wp_attached_file", "2018/06/K1-Winery-4-1.jpg");
INSERT INTO `wp_postmeta` VALUES("1136", "561", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:200;s:6:\"height\";i:134;s:4:\"file\";s:25:\"2018/06/K1-Winery-4-1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"K1-Winery-4-1-150x134.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1137", "567", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1138", "567", "_edit_lock", "1528628611:1");
INSERT INTO `wp_postmeta` VALUES("1141", "567", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("1142", "567", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("1143", "567", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("1144", "567", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("1145", "567", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("1146", "567", "_et_builder_version", "VB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("1147", "567", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("1148", "567", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("1149", "567", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("1150", "567", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("1151", "567", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("1152", "567", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("1153", "571", "_wp_attached_file", "2018/06/Pulteney-Plaza-Apartments-3.jpg");
INSERT INTO `wp_postmeta` VALUES("1154", "571", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:570;s:6:\"height\";i:378;s:4:\"file\";s:39:\"2018/06/Pulteney-Plaza-Apartments-3.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Pulteney-Plaza-Apartments-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Pulteney-Plaza-Apartments-3-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"Pulteney-Plaza-Apartments-3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"Pulteney-Plaza-Apartments-3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"Pulteney-Plaza-Apartments-3-510x378.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:378;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"Pulteney-Plaza-Apartments-3-400x378.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:378;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("1155", "567", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("1156", "567", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("1157", "567", "_et_pb_ab_subjects", "");
INSERT INTO `wp_postmeta` VALUES("1158", "567", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"567\" /]");
INSERT INTO `wp_postmeta` VALUES("1159", "576", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1160", "576", "_edit_lock", "1528633789:1");
INSERT INTO `wp_postmeta` VALUES("1161", "580", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1162", "580", "_edit_lock", "1528632389:1");
INSERT INTO `wp_postmeta` VALUES("1163", "580", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("1164", "580", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("1165", "580", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("1166", "580", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("1167", "580", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("1168", "580", "_et_builder_version", "VB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("1169", "580", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("1170", "580", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("1171", "580", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("1172", "580", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("1173", "580", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("1174", "580", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("1175", "583", "_wp_attached_file", "2018/06/4-240x160.jpg");
INSERT INTO `wp_postmeta` VALUES("1176", "583", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:240;s:6:\"height\";i:160;s:4:\"file\";s:21:\"2018/06/4-240x160.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"4-240x160-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("1177", "584", "_wp_attached_file", "2018/06/6-280x210.jpg");
INSERT INTO `wp_postmeta` VALUES("1178", "584", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:280;s:6:\"height\";i:210;s:4:\"file\";s:21:\"2018/06/6-280x210.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"6-280x210-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("1179", "585", "_wp_attached_file", "2018/06/9-400x300.jpg");
INSERT INTO `wp_postmeta` VALUES("1180", "585", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:400;s:6:\"height\";i:300;s:4:\"file\";s:21:\"2018/06/9-400x300.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"9-400x300-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"9-400x300-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"9-400x300-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"9-400x300-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"9-400x300-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1181", "586", "_wp_attached_file", "2018/06/800-300x300.jpg");
INSERT INTO `wp_postmeta` VALUES("1182", "586", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:23:\"2018/06/800-300x300.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"800-300x300-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"800-300x300-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"800-300x300-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;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("1183", "587", "_wp_attached_file", "2018/06/IMG_3603-800x600.jpg");
INSERT INTO `wp_postmeta` VALUES("1184", "587", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:28:\"2018/06/IMG_3603-800x600.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_3603-800x600-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_3603-800x600-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:28:\"IMG_3603-800x600-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_3603-800x600-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_3603-800x600-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_3603-800x600-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_3603-800x600-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"iPhone 6 Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1434555709\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"32\";s:13:\"shutter_speed\";s:19:\"0.00055586436909394\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1185", "588", "_wp_attached_file", "2018/06/IMG_3605-800x600-1.jpg");
INSERT INTO `wp_postmeta` VALUES("1186", "588", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:30:\"2018/06/IMG_3605-800x600-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"IMG_3605-800x600-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"IMG_3605-800x600-1-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:30:\"IMG_3605-800x600-1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"IMG_3605-800x600-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"IMG_3605-800x600-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"IMG_3605-800x600-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"IMG_3605-800x600-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"iPhone 6 Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1434555747\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"32\";s:13:\"shutter_speed\";s:19:\"0.00068306010928962\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1187", "589", "_wp_attached_file", "2018/06/Photo-ext-800x598.jpg");
INSERT INTO `wp_postmeta` VALUES("1188", "589", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:598;s:4:\"file\";s:29:\"2018/06/Photo-ext-800x598.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Photo-ext-800x598-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Photo-ext-800x598-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"Photo-ext-800x598-768x574.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:574;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:29:\"Photo-ext-800x598-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:29:\"Photo-ext-800x598-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:29:\"Photo-ext-800x598-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:29:\"Photo-ext-800x598-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPad mini\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1420647182\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"3.3\";s:3:\"iso\";s:2:\"32\";s:13:\"shutter_speed\";s:18:\"0.0028169014084507\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1189", "590", "_wp_attached_file", "2018/06/thelane_weddingevent.jpg");
INSERT INTO `wp_postmeta` VALUES("1190", "590", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:496;s:6:\"height\";i:318;s:4:\"file\";s:32:\"2018/06/thelane_weddingevent.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"thelane_weddingevent-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:\"thelane_weddingevent-300x192.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"thelane_weddingevent-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"thelane_weddingevent-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"thelane_weddingevent-400x318.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:318;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("1191", "591", "_wp_attached_file", "2018/06/the-lane-vineyard-wedding-photography-033-570x350.jpg");
INSERT INTO `wp_postmeta` VALUES("1192", "591", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:570;s:6:\"height\";i:350;s:4:\"file\";s:61:\"2018/06/the-lane-vineyard-wedding-photography-033-570x350.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"the-lane-vineyard-wedding-photography-033-570x350-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"the-lane-vineyard-wedding-photography-033-570x350-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:61:\"the-lane-vineyard-wedding-photography-033-570x350-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:61:\"the-lane-vineyard-wedding-photography-033-570x350-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:61:\"the-lane-vineyard-wedding-photography-033-570x350-510x350.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:61:\"the-lane-vineyard-wedding-photography-033-570x350-400x350.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:350;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("1193", "592", "_wp_attached_file", "2018/06/7-800x600.jpg");
INSERT INTO `wp_postmeta` VALUES("1194", "592", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:21:\"2018/06/7-800x600.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"7-800x600-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"7-800x600-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:21:\"7-800x600-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"7-800x600-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"7-800x600-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"7-800x600-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"7-800x600-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1298321650\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("1195", "593", "_wp_attached_file", "2018/06/the-lane-vineyard-restaurants-hahndorf-3.jpg");
INSERT INTO `wp_postmeta` VALUES("1196", "593", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:600;s:6:\"height\";i:411;s:4:\"file\";s:52:\"2018/06/the-lane-vineyard-restaurants-hahndorf-3.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"the-lane-vineyard-restaurants-hahndorf-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"the-lane-vineyard-restaurants-hahndorf-3-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:52:\"the-lane-vineyard-restaurants-hahndorf-3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:52:\"the-lane-vineyard-restaurants-hahndorf-3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:52:\"the-lane-vineyard-restaurants-hahndorf-3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:52:\"the-lane-vineyard-restaurants-hahndorf-3-400x411.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:411;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("1197", "580", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("1198", "580", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("1199", "580", "_et_pb_ab_subjects", "");
INSERT INTO `wp_postmeta` VALUES("1200", "580", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"580\" /]");
INSERT INTO `wp_postmeta` VALUES("1201", "595", "_wp_attached_file", "2018/06/the-lane-vineyard-restaurants-hahndorf-3-1.jpg");
INSERT INTO `wp_postmeta` VALUES("1202", "595", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:600;s:6:\"height\";i:411;s:4:\"file\";s:54:\"2018/06/the-lane-vineyard-restaurants-hahndorf-3-1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"the-lane-vineyard-restaurants-hahndorf-3-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"the-lane-vineyard-restaurants-hahndorf-3-1-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:54:\"the-lane-vineyard-restaurants-hahndorf-3-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:54:\"the-lane-vineyard-restaurants-hahndorf-3-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:54:\"the-lane-vineyard-restaurants-hahndorf-3-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:54:\"the-lane-vineyard-restaurants-hahndorf-3-1-400x411.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:411;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("1203", "600", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1204", "600", "_edit_lock", "1532436158:1");
INSERT INTO `wp_postmeta` VALUES("1205", "600", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("1206", "600", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("1207", "600", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("1208", "600", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("1209", "600", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("1210", "600", "_et_builder_version", "BB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("1211", "600", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("1212", "600", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("1213", "600", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("1214", "600", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("1215", "600", "_yoast_wpseo_content_score", "90");
INSERT INTO `wp_postmeta` VALUES("1216", "600", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("1217", "604", "_wp_attached_file", "2018/06/5-1.jpg");
INSERT INTO `wp_postmeta` VALUES("1218", "604", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1183;s:4:\"file\";s:15:\"2018/06/5-1.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"5-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"5-1-300x222.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"5-1-768x568.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:568;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"5-1-1024x757.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:757;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:15:\"5-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:16:\"5-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:15:\"5-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:15:\"5-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:16:\"5-1-1080x799.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:799;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:15:\"5-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("1219", "605", "_wp_attached_file", "2018/06/5-2.jpg");
INSERT INTO `wp_postmeta` VALUES("1220", "605", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1183;s:4:\"file\";s:15:\"2018/06/5-2.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"5-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"5-2-300x222.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"5-2-768x568.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:568;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"5-2-1024x757.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:757;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:15:\"5-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:16:\"5-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:15:\"5-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:15:\"5-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:16:\"5-2-1080x799.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:799;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:15:\"5-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("1221", "606", "_wp_attached_file", "2018/06/300.jpg");
INSERT INTO `wp_postmeta` VALUES("1222", "606", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1183;s:4:\"file\";s:15:\"2018/06/300.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"300-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"300-300x222.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"300-768x568.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:568;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"300-1024x757.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:757;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:15:\"300-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:16:\"300-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:15:\"300-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:15:\"300-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:16:\"300-1080x799.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:799;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:15:\"300-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("1223", "607", "_wp_attached_file", "2018/06/Haus-2.png");
INSERT INTO `wp_postmeta` VALUES("1224", "607", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:938;s:6:\"height\";i:324;s:4:\"file\";s:18:\"2018/06/Haus-2.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"Haus-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"Haus-2-300x104.png\";s:5:\"width\";i:300;s:6:\"height\";i:104;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"Haus-2-768x265.png\";s:5:\"width\";i:768;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"Haus-2-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"Haus-2-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"Haus-2-510x324.png\";s:5:\"width\";i:510;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"Haus-2-400x324.png\";s:5:\"width\";i:400;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("1225", "608", "_wp_attached_file", "2018/06/Haus.png");
INSERT INTO `wp_postmeta` VALUES("1226", "608", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:940;s:6:\"height\";i:324;s:4:\"file\";s:16:\"2018/06/Haus.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"Haus-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"Haus-300x103.png\";s:5:\"width\";i:300;s:6:\"height\";i:103;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"Haus-768x265.png\";s:5:\"width\";i:768;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:16:\"Haus-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:16:\"Haus-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:16:\"Haus-510x324.png\";s:5:\"width\";i:510;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:16:\"Haus-400x324.png\";s:5:\"width\";i:400;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("1227", "600", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("1228", "600", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("2392", "600", "_yoast_wpseo_title", "The Haus Restaurant Hahndorf - Beyond Ink");
INSERT INTO `wp_postmeta` VALUES("1230", "600", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"600\" /]");
INSERT INTO `wp_postmeta` VALUES("1231", "613", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1232", "613", "_edit_lock", "1528633306:1");
INSERT INTO `wp_postmeta` VALUES("1233", "613", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("1234", "613", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("1235", "613", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("1236", "613", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("1237", "613", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("1238", "613", "_et_builder_version", "VB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("1239", "613", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("1240", "613", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("1241", "613", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("1242", "613", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("1243", "613", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("1244", "613", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("1245", "616", "_wp_attached_file", "2018/06/58769_468825193140877_581070709_n.jpg");
INSERT INTO `wp_postmeta` VALUES("1246", "616", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:960;s:6:\"height\";i:639;s:4:\"file\";s:45:\"2018/06/58769_468825193140877_581070709_n.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"58769_468825193140877_581070709_n-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:\"58769_468825193140877_581070709_n-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"58769_468825193140877_581070709_n-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:45:\"58769_468825193140877_581070709_n-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:45:\"58769_468825193140877_581070709_n-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:45:\"58769_468825193140877_581070709_n-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:45:\"58769_468825193140877_581070709_n-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("1247", "617", "_wp_attached_file", "2018/06/306591_468825109807552_808447832_n.jpg");
INSERT INTO `wp_postmeta` VALUES("1248", "617", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:960;s:6:\"height\";i:639;s:4:\"file\";s:46:\"2018/06/306591_468825109807552_808447832_n.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"306591_468825109807552_808447832_n-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:46:\"306591_468825109807552_808447832_n-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"306591_468825109807552_808447832_n-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"306591_468825109807552_808447832_n-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"306591_468825109807552_808447832_n-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"306591_468825109807552_808447832_n-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"306591_468825109807552_808447832_n-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("1249", "618", "_wp_attached_file", "2018/06/340925_337597289597002_834197119_o.jpg");
INSERT INTO `wp_postmeta` VALUES("1250", "618", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:697;s:4:\"file\";s:46:\"2018/06/340925_337597289597002_834197119_o.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"340925_337597289597002_834197119_o-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:46:\"340925_337597289597002_834197119_o-300x209.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:209;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"340925_337597289597002_834197119_o-768x535.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:535;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"340925_337597289597002_834197119_o-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:47:\"340925_337597289597002_834197119_o-1000x675.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"340925_337597289597002_834197119_o-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"340925_337597289597002_834197119_o-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"340925_337597289597002_834197119_o-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("1251", "619", "_wp_attached_file", "2018/06/431772_468825116474218_1086552026_n.jpg");
INSERT INTO `wp_postmeta` VALUES("1252", "619", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:960;s:6:\"height\";i:639;s:4:\"file\";s:47:\"2018/06/431772_468825116474218_1086552026_n.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"431772_468825116474218_1086552026_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"431772_468825116474218_1086552026_n-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"431772_468825116474218_1086552026_n-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:47:\"431772_468825116474218_1086552026_n-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:47:\"431772_468825116474218_1086552026_n-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:47:\"431772_468825116474218_1086552026_n-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:47:\"431772_468825116474218_1086552026_n-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("1253", "620", "_wp_attached_file", "2018/06/img_2666.jpg");
INSERT INTO `wp_postmeta` VALUES("1254", "620", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:370;s:6:\"height\";i:555;s:4:\"file\";s:20:\"2018/06/img_2666.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"img_2666-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_2666-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"img_2666-370x250.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"img_2666-370x284.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:20:\"img_2666-370x382.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:20:\"img_2666-370x516.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1370264989\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"53\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1255", "621", "_wp_attached_file", "2018/06/img_26711.jpg");
INSERT INTO `wp_postmeta` VALUES("1256", "621", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:490;s:4:\"file\";s:21:\"2018/06/img_26711.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"img_26711-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"img_26711-300x210.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"img_26711-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"img_26711-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"img_26711-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"img_26711-400x490.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:490;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1370265197\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1257", "622", "_wp_attached_file", "2018/06/548745_468825066474223_249261207_n.jpg");
INSERT INTO `wp_postmeta` VALUES("1258", "622", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:370;s:6:\"height\";i:557;s:4:\"file\";s:46:\"2018/06/548745_468825066474223_249261207_n.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"548745_468825066474223_249261207_n-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:46:\"548745_468825066474223_249261207_n-199x300.jpg\";s:5:\"width\";i:199;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"548745_468825066474223_249261207_n-370x250.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"548745_468825066474223_249261207_n-370x284.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"548745_468825066474223_249261207_n-370x382.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"548745_468825066474223_249261207_n-370x516.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:516;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("1259", "623", "_wp_attached_file", "2018/06/img_2664.jpg");
INSERT INTO `wp_postmeta` VALUES("1260", "623", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:370;s:6:\"height\";i:555;s:4:\"file\";s:20:\"2018/06/img_2664.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"img_2664-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_2664-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"img_2664-370x250.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"img_2664-370x284.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:20:\"img_2664-370x382.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:20:\"img_2664-370x516.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1370264865\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"25\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1261", "613", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("1262", "613", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("1263", "613", "_et_pb_ab_subjects", "");
INSERT INTO `wp_postmeta` VALUES("1264", "613", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"613\" /]");
INSERT INTO `wp_postmeta` VALUES("1265", "576", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("1266", "576", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("1267", "576", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("1268", "576", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("1269", "576", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("1270", "576", "_et_builder_version", "VB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("1271", "576", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("1272", "576", "_et_pb_old_content", "<p>[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#9dd00f\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"27px|0px|11px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]</p><h1>Crafers Residence</h1><p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\" prev_background_color=\"#9dd00f\" next_background_color=\"#000000\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235,250,246\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\" prev_background_color=\"#000000\"][et_pb_fullwidth_image _builder_version=\"3.0.106\" /][/et_pb_section]</p>");
INSERT INTO `wp_postmeta` VALUES("1273", "576", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("1274", "576", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("1275", "576", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("1276", "576", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("1277", "631", "_wp_attached_file", "2018/06/img_3051.jpg");
INSERT INTO `wp_postmeta` VALUES("1278", "631", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:525;s:4:\"file\";s:20:\"2018/06/img_3051.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"img_3051-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_3051-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"img_3051-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"img_3051-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:20:\"img_3051-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:20:\"img_3051-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 4S\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1447236596\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.28\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:18:\"0.0027932960893855\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1279", "632", "_wp_attached_file", "2018/06/img_3052.jpg");
INSERT INTO `wp_postmeta` VALUES("1280", "632", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:525;s:4:\"file\";s:20:\"2018/06/img_3052.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"img_3052-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_3052-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"img_3052-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"img_3052-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:20:\"img_3052-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:20:\"img_3052-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 4S\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1447236598\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.28\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:18:\"0.0021739130434783\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1281", "633", "_wp_attached_file", "2018/06/img_3054.jpg");
INSERT INTO `wp_postmeta` VALUES("1282", "633", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:525;s:4:\"file\";s:20:\"2018/06/img_3054.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"img_3054-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_3054-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"img_3054-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"img_3054-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:20:\"img_3054-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:20:\"img_3054-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 4S\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1447236640\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.28\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:19:\"0.00034399724802202\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1283", "634", "_wp_attached_file", "2018/06/img_3056.jpg");
INSERT INTO `wp_postmeta` VALUES("1284", "634", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:525;s:4:\"file\";s:20:\"2018/06/img_3056.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"img_3056-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_3056-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"img_3056-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"img_3056-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:20:\"img_3056-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:20:\"img_3056-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 4S\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1447236720\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.28\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:19:\"0.00032605151613955\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1285", "635", "_wp_attached_file", "2018/06/img_3057.jpg");
INSERT INTO `wp_postmeta` VALUES("1286", "635", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:525;s:4:\"file\";s:20:\"2018/06/img_3057.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"img_3057-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_3057-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"img_3057-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"img_3057-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:20:\"img_3057-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:20:\"img_3057-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 4S\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1447236722\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.28\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:19:\"0.00032605151613955\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1287", "636", "_wp_attached_file", "2018/06/img_3058.jpg");
INSERT INTO `wp_postmeta` VALUES("1288", "636", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:525;s:4:\"file\";s:20:\"2018/06/img_3058.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"img_3058-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_3058-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"img_3058-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"img_3058-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:20:\"img_3058-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:20:\"img_3058-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 4S\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1447236766\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.28\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:18:\"0.0019762845849802\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1289", "637", "_wp_attached_file", "2018/06/Rivercorp-Monarto-Apple-Processing-Plant-1.jpg");
INSERT INTO `wp_postmeta` VALUES("1290", "637", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:54:\"2018/06/Rivercorp-Monarto-Apple-Processing-Plant-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"Rivercorp-Monarto-Apple-Processing-Plant-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"Rivercorp-Monarto-Apple-Processing-Plant-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:54:\"Rivercorp-Monarto-Apple-Processing-Plant-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:54:\"Rivercorp-Monarto-Apple-Processing-Plant-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:54:\"Rivercorp-Monarto-Apple-Processing-Plant-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:54:\"Rivercorp-Monarto-Apple-Processing-Plant-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:54:\"Rivercorp-Monarto-Apple-Processing-Plant-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1291", "576", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("1292", "576", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("1293", "576", "_et_pb_ab_subjects", "");
INSERT INTO `wp_postmeta` VALUES("1294", "576", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"576\" /]");
INSERT INTO `wp_postmeta` VALUES("1295", "642", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1296", "642", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("1297", "642", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("1298", "642", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("1299", "642", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("1300", "642", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("1301", "642", "_et_builder_version", "VB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("1302", "642", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("1303", "642", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("1304", "642", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("1305", "642", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("1306", "642", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("1307", "642", "_edit_lock", "1528634257:1");
INSERT INTO `wp_postmeta` VALUES("1308", "642", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("1309", "646", "_wp_attached_file", "2018/06/23919_481957031827693_1455616294_n.jpg");
INSERT INTO `wp_postmeta` VALUES("1310", "646", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:482;s:4:\"file\";s:46:\"2018/06/23919_481957031827693_1455616294_n.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"23919_481957031827693_1455616294_n-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:46:\"23919_481957031827693_1455616294_n-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"23919_481957031827693_1455616294_n-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"23919_481957031827693_1455616294_n-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"23919_481957031827693_1455616294_n-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"23919_481957031827693_1455616294_n-400x482.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:482;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("1311", "647", "_wp_attached_file", "2018/06/55708_165645590125507_7049646_o-1.jpg");
INSERT INTO `wp_postmeta` VALUES("1312", "647", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:666;s:4:\"file\";s:45:\"2018/06/55708_165645590125507_7049646_o-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"55708_165645590125507_7049646_o-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"55708_165645590125507_7049646_o-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"55708_165645590125507_7049646_o-1-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:45:\"55708_165645590125507_7049646_o-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:45:\"55708_165645590125507_7049646_o-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:45:\"55708_165645590125507_7049646_o-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:45:\"55708_165645590125507_7049646_o-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("1313", "648", "_wp_attached_file", "2018/06/74024_164896060200460_5837306_n.jpg");
INSERT INTO `wp_postmeta` VALUES("1314", "648", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:720;s:6:\"height\";i:479;s:4:\"file\";s:43:\"2018/06/74024_164896060200460_5837306_n.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"74024_164896060200460_5837306_n-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:43:\"74024_164896060200460_5837306_n-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"74024_164896060200460_5837306_n-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"74024_164896060200460_5837306_n-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:43:\"74024_164896060200460_5837306_n-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:43:\"74024_164896060200460_5837306_n-400x479.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:479;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("1315", "649", "_wp_attached_file", "2018/06/388101_289377961085602_2073435968_n.jpg");
INSERT INTO `wp_postmeta` VALUES("1316", "649", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:609;s:6:\"height\";i:407;s:4:\"file\";s:47:\"2018/06/388101_289377961085602_2073435968_n.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"388101_289377961085602_2073435968_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"388101_289377961085602_2073435968_n-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:47:\"388101_289377961085602_2073435968_n-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:47:\"388101_289377961085602_2073435968_n-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:47:\"388101_289377961085602_2073435968_n-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:47:\"388101_289377961085602_2073435968_n-400x407.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:407;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("1317", "650", "_wp_attached_file", "2018/06/526854_601993999823995_1523933766_n.jpg");
INSERT INTO `wp_postmeta` VALUES("1318", "650", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:450;s:6:\"height\";i:300;s:4:\"file\";s:47:\"2018/06/526854_601993999823995_1523933766_n.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"526854_601993999823995_1523933766_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"526854_601993999823995_1523933766_n-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:47:\"526854_601993999823995_1523933766_n-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:47:\"526854_601993999823995_1523933766_n-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:47:\"526854_601993999823995_1523933766_n-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1319", "651", "_wp_attached_file", "2018/06/1014519_572681499421912_1951969464_o.jpg");
INSERT INTO `wp_postmeta` VALUES("1320", "651", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:48:\"2018/06/1014519_572681499421912_1951969464_o.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"1014519_572681499421912_1951969464_o-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:48:\"1014519_572681499421912_1951969464_o-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"1014519_572681499421912_1951969464_o-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:48:\"1014519_572681499421912_1951969464_o-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:48:\"1014519_572681499421912_1951969464_o-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:48:\"1014519_572681499421912_1951969464_o-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:48:\"1014519_572681499421912_1951969464_o-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("1321", "652", "_wp_attached_file", "2018/06/1237773_608236982533030_822563764_n.jpg");
INSERT INTO `wp_postmeta` VALUES("1322", "652", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:47:\"2018/06/1237773_608236982533030_822563764_n.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"1237773_608236982533030_822563764_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"1237773_608236982533030_822563764_n-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:47:\"1237773_608236982533030_822563764_n-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:47:\"1237773_608236982533030_822563764_n-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:47:\"1237773_608236982533030_822563764_n-500x382.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:47:\"1237773_608236982533030_822563764_n-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1323", "653", "_wp_attached_file", "2018/06/add.jpg");
INSERT INTO `wp_postmeta` VALUES("1324", "653", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:639;s:6:\"height\";i:426;s:4:\"file\";s:15:\"2018/06/add.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"add-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"add-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:15:\"add-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:15:\"add-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:15:\"add-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:15:\"add-400x426.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:426;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("1325", "654", "_wp_attached_file", "2018/06/add2.jpg");
INSERT INTO `wp_postmeta` VALUES("1326", "654", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:600;s:6:\"height\";i:407;s:4:\"file\";s:16:\"2018/06/add2.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"add2-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:16:\"add2-300x204.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:16:\"add2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:16:\"add2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:16:\"add2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:16:\"add2-400x407.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:407;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("1327", "655", "_wp_attached_file", "2018/06/ff.png");
INSERT INTO `wp_postmeta` VALUES("1328", "655", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:938;s:6:\"height\";i:326;s:4:\"file\";s:14:\"2018/06/ff.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"ff-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"ff-300x104.png\";s:5:\"width\";i:300;s:6:\"height\";i:104;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"ff-768x267.png\";s:5:\"width\";i:768;s:6:\"height\";i:267;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:14:\"ff-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:14:\"ff-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:14:\"ff-510x326.png\";s:5:\"width\";i:510;s:6:\"height\";i:326;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:14:\"ff-400x326.png\";s:5:\"width\";i:400;s:6:\"height\";i:326;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("1329", "656", "_wp_attached_file", "2018/06/trg.png");
INSERT INTO `wp_postmeta` VALUES("1330", "656", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:936;s:6:\"height\";i:324;s:4:\"file\";s:15:\"2018/06/trg.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"trg-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"trg-300x104.png\";s:5:\"width\";i:300;s:6:\"height\";i:104;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"trg-768x266.png\";s:5:\"width\";i:768;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:15:\"trg-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:15:\"trg-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:15:\"trg-510x324.png\";s:5:\"width\";i:510;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:15:\"trg-400x324.png\";s:5:\"width\";i:400;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("1331", "642", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("1332", "642", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("1333", "642", "_et_pb_ab_subjects", "");
INSERT INTO `wp_postmeta` VALUES("1334", "642", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"642\" /]");
INSERT INTO `wp_postmeta` VALUES("1335", "660", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1336", "660", "_menu_item_menu_item_parent", "191");
INSERT INTO `wp_postmeta` VALUES("1337", "660", "_menu_item_object_id", "642");
INSERT INTO `wp_postmeta` VALUES("1338", "660", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1339", "660", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1340", "660", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1341", "660", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1342", "660", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1344", "661", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1345", "661", "_menu_item_menu_item_parent", "191");
INSERT INTO `wp_postmeta` VALUES("1346", "661", "_menu_item_object_id", "576");
INSERT INTO `wp_postmeta` VALUES("1347", "661", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1348", "661", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1349", "661", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1350", "661", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1351", "661", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1353", "662", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1354", "662", "_menu_item_menu_item_parent", "191");
INSERT INTO `wp_postmeta` VALUES("1355", "662", "_menu_item_object_id", "613");
INSERT INTO `wp_postmeta` VALUES("1356", "662", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1357", "662", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1358", "662", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1359", "662", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1360", "662", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1362", "663", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1363", "663", "_menu_item_menu_item_parent", "191");
INSERT INTO `wp_postmeta` VALUES("1364", "663", "_menu_item_object_id", "600");
INSERT INTO `wp_postmeta` VALUES("1365", "663", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1366", "663", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1367", "663", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1368", "663", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1369", "663", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1371", "664", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1372", "664", "_menu_item_menu_item_parent", "191");
INSERT INTO `wp_postmeta` VALUES("1373", "664", "_menu_item_object_id", "580");
INSERT INTO `wp_postmeta` VALUES("1374", "664", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1375", "664", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1376", "664", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1377", "664", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1378", "664", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1769", "175", "_yoast_wpseo_metadesc", "Beyond Ink are commercial building designers that specialise in major regional developments – from design and construction to entire management of your project. Town planning, project management, cost control, interior design.");
INSERT INTO `wp_postmeta` VALUES("1768", "175", "_yoast_wpseo_title", "Commercial Projects - Beyond Ink - Design, Project Management");
INSERT INTO `wp_postmeta` VALUES("1389", "666", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1390", "666", "_menu_item_menu_item_parent", "191");
INSERT INTO `wp_postmeta` VALUES("1391", "666", "_menu_item_object_id", "550");
INSERT INTO `wp_postmeta` VALUES("1392", "666", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1393", "666", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1394", "666", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1395", "666", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1396", "666", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1767", "175", "_yoast_wpseo_focuskw", "Commercial building design");
INSERT INTO `wp_postmeta` VALUES("1765", "120", "_yoast_wpseo_linkdex", "55");
INSERT INTO `wp_postmeta` VALUES("1764", "120", "_yoast_wpseo_metadesc", "From major regional developments, to grand home designs – you can feel at ease with our beginning-to-end commercial and residential design, construction, and project management expertise.");
INSERT INTO `wp_postmeta` VALUES("1763", "120", "_yoast_wpseo_title", "Commercial and Residential Projects - Beyond Ink");
INSERT INTO `wp_postmeta` VALUES("1416", "669", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1417", "669", "_menu_item_menu_item_parent", "191");
INSERT INTO `wp_postmeta` VALUES("1418", "669", "_menu_item_object_id", "519");
INSERT INTO `wp_postmeta` VALUES("1419", "669", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1420", "669", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1421", "669", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1422", "669", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1423", "669", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1425", "670", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1426", "670", "_menu_item_menu_item_parent", "172");
INSERT INTO `wp_postmeta` VALUES("1427", "670", "_menu_item_object_id", "323");
INSERT INTO `wp_postmeta` VALUES("1428", "670", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1429", "670", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1430", "670", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1431", "670", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1432", "670", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1434", "671", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1435", "671", "_menu_item_menu_item_parent", "172");
INSERT INTO `wp_postmeta` VALUES("1436", "671", "_menu_item_object_id", "426");
INSERT INTO `wp_postmeta` VALUES("1437", "671", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1438", "671", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1439", "671", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1440", "671", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1441", "671", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1762", "120", "_yoast_wpseo_focuskw", "Commercial and residential projects");
INSERT INTO `wp_postmeta` VALUES("1760", "211", "_yoast_wpseo_title", "About Us - Beyond Ink Commercial and Residential Builders");
INSERT INTO `wp_postmeta` VALUES("1452", "673", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1453", "673", "_menu_item_menu_item_parent", "172");
INSERT INTO `wp_postmeta` VALUES("1454", "673", "_menu_item_object_id", "389");
INSERT INTO `wp_postmeta` VALUES("1455", "673", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1456", "673", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1457", "673", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1458", "673", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1459", "673", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1461", "674", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1462", "674", "_menu_item_menu_item_parent", "172");
INSERT INTO `wp_postmeta` VALUES("1463", "674", "_menu_item_object_id", "448");
INSERT INTO `wp_postmeta` VALUES("1464", "674", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1465", "674", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1466", "674", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1467", "674", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1468", "674", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1470", "675", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1471", "675", "_menu_item_menu_item_parent", "172");
INSERT INTO `wp_postmeta` VALUES("1472", "675", "_menu_item_object_id", "232");
INSERT INTO `wp_postmeta` VALUES("1473", "675", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1474", "675", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1475", "675", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1476", "675", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1477", "675", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1479", "676", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1480", "676", "_menu_item_menu_item_parent", "172");
INSERT INTO `wp_postmeta` VALUES("1481", "676", "_menu_item_object_id", "355");
INSERT INTO `wp_postmeta` VALUES("1482", "676", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1483", "676", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1484", "676", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1485", "676", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1486", "676", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1488", "677", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1489", "677", "_menu_item_menu_item_parent", "172");
INSERT INTO `wp_postmeta` VALUES("1490", "677", "_menu_item_object_id", "378");
INSERT INTO `wp_postmeta` VALUES("1491", "677", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1492", "677", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1493", "677", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1494", "677", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1495", "677", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1497", "678", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1498", "678", "_menu_item_menu_item_parent", "172");
INSERT INTO `wp_postmeta` VALUES("1499", "678", "_menu_item_object_id", "462");
INSERT INTO `wp_postmeta` VALUES("1500", "678", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1501", "678", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1502", "678", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1503", "678", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1504", "678", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1525", "682", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:28:\"2018/06/IMG_0182-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_0182-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_0182-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"IMG_0182-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_0182-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_0182-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_0182-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_0182-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1329139961\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1506", "679", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1507", "679", "_menu_item_menu_item_parent", "172");
INSERT INTO `wp_postmeta` VALUES("1508", "679", "_menu_item_object_id", "474");
INSERT INTO `wp_postmeta` VALUES("1509", "679", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1510", "679", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1511", "679", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1512", "679", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1513", "679", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2387", "1405", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:601;s:4:\"file\";s:51:\"2018/07/The-Haus-Extension-1-23-08-2017-800x601.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"The-Haus-Extension-1-23-08-2017-800x601-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:51:\"The-Haus-Extension-1-23-08-2017-800x601-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:51:\"The-Haus-Extension-1-23-08-2017-800x601-768x577.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:577;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:51:\"The-Haus-Extension-1-23-08-2017-800x601-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:51:\"The-Haus-Extension-1-23-08-2017-800x601-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:51:\"The-Haus-Extension-1-23-08-2017-800x601-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:51:\"The-Haus-Extension-1-23-08-2017-800x601-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1503409817\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2386", "1405", "_wp_attached_file", "2018/07/The-Haus-Extension-1-23-08-2017-800x601.jpg");
INSERT INTO `wp_postmeta` VALUES("1524", "682", "_wp_attached_file", "2018/06/IMG_0182-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1526", "683", "_wp_attached_file", "2018/06/016-hahndorf.jpg");
INSERT INTO `wp_postmeta` VALUES("1527", "683", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:625;s:6:\"height\";i:356;s:4:\"file\";s:24:\"2018/06/016-hahndorf.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"016-hahndorf-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"016-hahndorf-300x171.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"016-hahndorf-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"016-hahndorf-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"016-hahndorf-510x356.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:356;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"016-hahndorf-400x356.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:356;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("1528", "684", "_wp_attached_file", "2018/06/422543_322878064414514_186815890_n.jpg");
INSERT INTO `wp_postmeta` VALUES("1529", "684", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:958;s:6:\"height\";i:558;s:4:\"file\";s:46:\"2018/06/422543_322878064414514_186815890_n.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"422543_322878064414514_186815890_n-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:46:\"422543_322878064414514_186815890_n-300x175.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:175;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"422543_322878064414514_186815890_n-768x447.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"422543_322878064414514_186815890_n-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"422543_322878064414514_186815890_n-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"422543_322878064414514_186815890_n-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"422543_322878064414514_186815890_n-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1530", "685", "_wp_attached_file", "2018/06/431005_322878134414507_1647380480_n.jpg");
INSERT INTO `wp_postmeta` VALUES("1531", "685", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:502;s:4:\"file\";s:47:\"2018/06/431005_322878134414507_1647380480_n.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"431005_322878134414507_1647380480_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"431005_322878134414507_1647380480_n-300x215.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:47:\"431005_322878134414507_1647380480_n-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:47:\"431005_322878134414507_1647380480_n-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:47:\"431005_322878134414507_1647380480_n-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:47:\"431005_322878134414507_1647380480_n-400x502.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:502;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("1532", "686", "_wp_attached_file", "2018/06/IMG_0181-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1533", "686", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:28:\"2018/06/IMG_0181-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_0181-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_0181-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"IMG_0181-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_0181-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_0181-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_0181-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_0181-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1329139948\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1534", "687", "_wp_attached_file", "2018/06/IMG_0182-800x533-1.jpg");
INSERT INTO `wp_postmeta` VALUES("1535", "687", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:30:\"2018/06/IMG_0182-800x533-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"IMG_0182-800x533-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"IMG_0182-800x533-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"IMG_0182-800x533-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"IMG_0182-800x533-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"IMG_0182-800x533-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"IMG_0182-800x533-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"IMG_0182-800x533-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1329139961\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1536", "688", "_wp_attached_file", "2018/06/IMG_0183-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1537", "688", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:28:\"2018/06/IMG_0183-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_0183-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_0183-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"IMG_0183-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_0183-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_0183-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_0183-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_0183-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1329139999\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1538", "689", "_wp_attached_file", "2018/06/IMG_0184-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1539", "689", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:28:\"2018/06/IMG_0184-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_0184-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_0184-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"IMG_0184-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_0184-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_0184-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_0184-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_0184-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1329140026\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"23\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1540", "690", "_wp_attached_file", "2018/06/IMG_0189-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1541", "690", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:28:\"2018/06/IMG_0189-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_0189-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_0189-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"IMG_0189-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_0189-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_0189-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_0189-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_0189-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1329140107\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1542", "691", "_wp_attached_file", "2018/06/IMG_0192-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1543", "691", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:28:\"2018/06/IMG_0192-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_0192-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_0192-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"IMG_0192-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_0192-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_0192-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_0192-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_0192-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1329140142\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1544", "692", "_wp_attached_file", "2018/06/IMG_6211-800x533-2.jpg");
INSERT INTO `wp_postmeta` VALUES("1545", "692", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:30:\"2018/06/IMG_6211-800x533-2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"IMG_6211-800x533-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"IMG_6211-800x533-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"IMG_6211-800x533-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"IMG_6211-800x533-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"IMG_6211-800x533-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"IMG_6211-800x533-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"IMG_6211-800x533-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:29:\"www.facebook.com/kensohstudio\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1477492020\";s:9:\"copyright\";s:29:\"www.facebook.com/kensohstudio\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1546", "693", "_wp_attached_file", "2018/06/the-hahndorf-academy-mark-richards.jpg");
INSERT INTO `wp_postmeta` VALUES("1547", "693", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:900;s:6:\"height\";i:600;s:4:\"file\";s:46:\"2018/06/the-hahndorf-academy-mark-richards.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"the-hahndorf-academy-mark-richards-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:46:\"the-hahndorf-academy-mark-richards-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"the-hahndorf-academy-mark-richards-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"the-hahndorf-academy-mark-richards-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"the-hahndorf-academy-mark-richards-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:46:\"the-hahndorf-academy-mark-richards-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:46:\"the-hahndorf-academy-mark-richards-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("1548", "694", "_wp_attached_file", "2018/06/Skilly-Hills-1-2.jpg");
INSERT INTO `wp_postmeta` VALUES("1549", "694", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:28:\"2018/06/Skilly-Hills-1-2.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Skilly-Hills-1-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Skilly-Hills-1-2-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:28:\"Skilly-Hills-1-2-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:29:\"Skilly-Hills-1-2-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"Skilly-Hills-1-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:29:\"Skilly-Hills-1-2-1024x675.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"Skilly-Hills-1-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"Skilly-Hills-1-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"Skilly-Hills-1-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("1550", "695", "_wp_attached_file", "2018/06/IMG_6211-800x533-3.jpg");
INSERT INTO `wp_postmeta` VALUES("1551", "695", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:30:\"2018/06/IMG_6211-800x533-3.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"IMG_6211-800x533-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"IMG_6211-800x533-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"IMG_6211-800x533-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"IMG_6211-800x533-3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"IMG_6211-800x533-3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"IMG_6211-800x533-3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"IMG_6211-800x533-3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:29:\"www.facebook.com/kensohstudio\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1477492020\";s:9:\"copyright\";s:29:\"www.facebook.com/kensohstudio\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1552", "698", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1553", "698", "_edit_lock", "1528635514:1");
INSERT INTO `wp_postmeta` VALUES("1554", "698", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("1555", "698", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("1556", "698", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("1557", "698", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("1558", "698", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("1559", "698", "_et_builder_version", "VB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("1560", "698", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("1561", "698", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("1562", "698", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("1563", "698", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("1564", "698", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("1565", "698", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("1566", "701", "_wp_attached_file", "2018/06/7.jpg");
INSERT INTO `wp_postmeta` VALUES("1567", "701", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1796;s:6:\"height\";i:1182;s:4:\"file\";s:13:\"2018/06/7.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"7-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:13:\"7-300x197.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"7-768x505.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"7-1024x674.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:674;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:13:\"7-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:14:\"7-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:13:\"7-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:13:\"7-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:14:\"7-1080x711.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:711;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:13:\"7-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("1568", "702", "_wp_attached_file", "2018/06/IMG_6211-800x533-4.jpg");
INSERT INTO `wp_postmeta` VALUES("1569", "702", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:30:\"2018/06/IMG_6211-800x533-4.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"IMG_6211-800x533-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"IMG_6211-800x533-4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"IMG_6211-800x533-4-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"IMG_6211-800x533-4-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"IMG_6211-800x533-4-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"IMG_6211-800x533-4-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"IMG_6211-800x533-4-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:29:\"www.facebook.com/kensohstudio\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1477492020\";s:9:\"copyright\";s:29:\"www.facebook.com/kensohstudio\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1570", "703", "_wp_attached_file", "2018/06/Skilly-Hills-1-3.jpg");
INSERT INTO `wp_postmeta` VALUES("1571", "703", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:28:\"2018/06/Skilly-Hills-1-3.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Skilly-Hills-1-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Skilly-Hills-1-3-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:28:\"Skilly-Hills-1-3-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:29:\"Skilly-Hills-1-3-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"Skilly-Hills-1-3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:29:\"Skilly-Hills-1-3-1024x675.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"Skilly-Hills-1-3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"Skilly-Hills-1-3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"Skilly-Hills-1-3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("1572", "704", "_wp_attached_file", "2018/06/Skilly-Hills-1-4.jpg");
INSERT INTO `wp_postmeta` VALUES("1573", "704", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:28:\"2018/06/Skilly-Hills-1-4.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Skilly-Hills-1-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Skilly-Hills-1-4-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:28:\"Skilly-Hills-1-4-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:29:\"Skilly-Hills-1-4-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"Skilly-Hills-1-4-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:29:\"Skilly-Hills-1-4-1024x675.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"Skilly-Hills-1-4-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"Skilly-Hills-1-4-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"Skilly-Hills-1-4-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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("1574", "698", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("1575", "698", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("1576", "698", "_et_pb_ab_subjects", "");
INSERT INTO `wp_postmeta` VALUES("1577", "698", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"698\" /]");
INSERT INTO `wp_postmeta` VALUES("1578", "707", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1579", "707", "_edit_lock", "1528635804:1");
INSERT INTO `wp_postmeta` VALUES("1580", "707", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("1581", "707", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("1582", "707", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("1583", "707", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("1584", "707", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("1585", "707", "_et_builder_version", "VB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("1586", "707", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("1587", "707", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("1588", "707", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("1589", "707", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("1590", "707", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("1591", "707", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("1592", "707", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("1593", "707", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("1594", "707", "_et_pb_ab_subjects", "");
INSERT INTO `wp_postmeta` VALUES("1595", "707", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"707\" /]");
INSERT INTO `wp_postmeta` VALUES("1596", "714", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1597", "714", "_menu_item_menu_item_parent", "210");
INSERT INTO `wp_postmeta` VALUES("1598", "714", "_menu_item_object_id", "707");
INSERT INTO `wp_postmeta` VALUES("1599", "714", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1600", "714", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1601", "714", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1602", "714", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1603", "714", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1614", "716", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("1605", "715", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1606", "715", "_menu_item_menu_item_parent", "210");
INSERT INTO `wp_postmeta` VALUES("1607", "715", "_menu_item_object_id", "698");
INSERT INTO `wp_postmeta` VALUES("1608", "715", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1609", "715", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1610", "715", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1611", "715", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1612", "715", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1615", "718", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1616", "718", "_edit_lock", "1528676570:1");
INSERT INTO `wp_postmeta` VALUES("1617", "718", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("1618", "718", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("1619", "718", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("1620", "718", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("1621", "718", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("1622", "718", "_et_builder_version", "VB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("1623", "718", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("1624", "718", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("1625", "718", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("1626", "718", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("1627", "718", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("1628", "718", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("1629", "718", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("1630", "718", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("1631", "718", "_et_pb_ab_subjects", "");
INSERT INTO `wp_postmeta` VALUES("1632", "718", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"718\" /]");
INSERT INTO `wp_postmeta` VALUES("1633", "723", "_wp_attached_file", "2018/06/North-East-Corner-Dulux-Gunmetal-Kinetic-800x254.jpg");
INSERT INTO `wp_postmeta` VALUES("1634", "723", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:254;s:4:\"file\";s:60:\"2018/06/North-East-Corner-Dulux-Gunmetal-Kinetic-800x254.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"North-East-Corner-Dulux-Gunmetal-Kinetic-800x254-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"North-East-Corner-Dulux-Gunmetal-Kinetic-800x254-300x95.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:95;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:60:\"North-East-Corner-Dulux-Gunmetal-Kinetic-800x254-768x244.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:244;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:60:\"North-East-Corner-Dulux-Gunmetal-Kinetic-800x254-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:60:\"North-East-Corner-Dulux-Gunmetal-Kinetic-800x254-400x254.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:60:\"North-East-Corner-Dulux-Gunmetal-Kinetic-800x254-510x254.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:60:\"North-East-Corner-Dulux-Gunmetal-Kinetic-800x254-400x254.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1522926689\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1635", "725", "_wp_attached_file", "2018/06/Entry-Portal-2-800x381.jpg");
INSERT INTO `wp_postmeta` VALUES("1636", "725", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:381;s:4:\"file\";s:34:\"2018/06/Entry-Portal-2-800x381.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Entry-Portal-2-800x381-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Entry-Portal-2-800x381-300x143.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"Entry-Portal-2-800x381-768x366.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"Entry-Portal-2-800x381-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"Entry-Portal-2-800x381-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"Entry-Portal-2-800x381-510x381.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:381;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"Entry-Portal-2-800x381-400x381.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:381;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1490874088\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("1637", "726", "_wp_attached_file", "2018/06/Main-Foyer-800x480.jpg");
INSERT INTO `wp_postmeta` VALUES("1638", "726", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:480;s:4:\"file\";s:30:\"2018/06/Main-Foyer-800x480.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Main-Foyer-800x480-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:\"Main-Foyer-800x480-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"Main-Foyer-800x480-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"Main-Foyer-800x480-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"Main-Foyer-800x480-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"Main-Foyer-800x480-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"Main-Foyer-800x480-400x480.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1490813548\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("1639", "727", "_wp_attached_file", "2018/06/MBRC-Internal-Perspective-COMMITTEEMEMBERS-AIRLOCK-800x651.jpg");
INSERT INTO `wp_postmeta` VALUES("1640", "727", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:651;s:4:\"file\";s:70:\"2018/06/MBRC-Internal-Perspective-COMMITTEEMEMBERS-AIRLOCK-800x651.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:70:\"MBRC-Internal-Perspective-COMMITTEEMEMBERS-AIRLOCK-800x651-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:70:\"MBRC-Internal-Perspective-COMMITTEEMEMBERS-AIRLOCK-800x651-300x244.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:244;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:70:\"MBRC-Internal-Perspective-COMMITTEEMEMBERS-AIRLOCK-800x651-768x625.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:625;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:70:\"MBRC-Internal-Perspective-COMMITTEEMEMBERS-AIRLOCK-800x651-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:70:\"MBRC-Internal-Perspective-COMMITTEEMEMBERS-AIRLOCK-800x651-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:70:\"MBRC-Internal-Perspective-COMMITTEEMEMBERS-AIRLOCK-800x651-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:70:\"MBRC-Internal-Perspective-COMMITTEEMEMBERS-AIRLOCK-800x651-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1495621552\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1641", "729", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1642", "729", "_menu_item_menu_item_parent", "203");
INSERT INTO `wp_postmeta` VALUES("1643", "729", "_menu_item_object_id", "718");
INSERT INTO `wp_postmeta` VALUES("1644", "729", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1645", "729", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1646", "729", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1647", "729", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1648", "729", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1652", "752", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("1653", "763", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1654", "763", "_edit_lock", "1531991046:1");
INSERT INTO `wp_postmeta` VALUES("1655", "776", "_et_pb_row_layout", "4_4");
INSERT INTO `wp_postmeta` VALUES("1656", "776", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("1754", "1004", "_wp_attached_file", "2018/07/IMG_7546-2.jpg");
INSERT INTO `wp_postmeta` VALUES("1755", "1004", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:500;s:6:\"height\";i:375;s:4:\"file\";s:22:\"2018/07/IMG_7546-2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_7546-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_7546-2-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"IMG_7546-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"IMG_7546-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:22:\"IMG_7546-2-400x375.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 4S\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1456765276\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.28\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:19:\"0.00097847358121331\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1770", "175", "_yoast_wpseo_linkdex", "44");
INSERT INTO `wp_postmeta` VALUES("1772", "152", "_yoast_wpseo_focuskw", "Residential design");
INSERT INTO `wp_postmeta` VALUES("1773", "152", "_yoast_wpseo_title", "Residential Projects - Beyond Ink - Design, Town Planning");
INSERT INTO `wp_postmeta` VALUES("1774", "152", "_yoast_wpseo_metadesc", "Beyond Ink have been designing and building beautiful homes in the Adelaide Hills area since 2006. We provide an end-to-end residential design and project management process to put your mind at ease.");
INSERT INTO `wp_postmeta` VALUES("1775", "152", "_yoast_wpseo_linkdex", "49");
INSERT INTO `wp_postmeta` VALUES("1777", "204", "_yoast_wpseo_focuskw", "Renovation");
INSERT INTO `wp_postmeta` VALUES("1778", "204", "_yoast_wpseo_title", "Renovations - Beyond Ink - Design, Project Management, Town Planning");
INSERT INTO `wp_postmeta` VALUES("1779", "204", "_yoast_wpseo_metadesc", "Beyond Ink can handle your renovation, from design through to completion. Whether it\'s a commercial or residential project, our talented team can make your renovation dreams a reality.");
INSERT INTO `wp_postmeta` VALUES("1780", "204", "_yoast_wpseo_linkdex", "49");
INSERT INTO `wp_postmeta` VALUES("1782", "195", "_yoast_wpseo_focuskw", "Beyond Ink");
INSERT INTO `wp_postmeta` VALUES("1783", "195", "_yoast_wpseo_title", "Coming Soon - Beyond Ink - Commercial & Residential Building Designers");
INSERT INTO `wp_postmeta` VALUES("1784", "195", "_yoast_wpseo_metadesc", "Discover our work in progress, ranging from large regional developments, to grand homes in the Adelaide Hills area. Our end-to-end design, project management, and cost control process is second to none.");
INSERT INTO `wp_postmeta` VALUES("1785", "195", "_yoast_wpseo_linkdex", "42");
INSERT INTO `wp_postmeta` VALUES("1789", "1090", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1788", "1090", "_edit_lock", "1531990911:1");
INSERT INTO `wp_postmeta` VALUES("1790", "1091", "_wp_attached_file", "2018/07/section-bg-2.jpg");
INSERT INTO `wp_postmeta` VALUES("1791", "1091", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:872;s:4:\"file\";s:24:\"2018/07/section-bg-2.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"section-bg-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"section-bg-2-300x136.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:136;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"section-bg-2-768x349.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:349;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"section-bg-2-1024x465.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"section-bg-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:25:\"section-bg-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"section-bg-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"section-bg-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:25:\"section-bg-2-1080x491.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:491;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"section-bg-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1792", "1090", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("1793", "1090", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("1794", "1090", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("1795", "1090", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("1796", "1090", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("1797", "1090", "_et_builder_version", "BB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("1798", "1090", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("1799", "1090", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("1800", "1090", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("1801", "1090", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("1802", "1090", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("1803", "1090", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("1804", "763", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("1805", "763", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("1806", "763", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("1807", "763", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("1808", "763", "_et_pb_ab_subjects", "");
INSERT INTO `wp_postmeta` VALUES("1809", "763", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("1810", "763", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"763\" /]");
INSERT INTO `wp_postmeta` VALUES("1811", "763", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("1812", "763", "_et_builder_version", "VB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("1832", "1102", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("1833", "1103", "_edit_lock", "1531992768:1");
INSERT INTO `wp_postmeta` VALUES("1834", "1103", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1835", "1103", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("1836", "1103", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("1837", "1103", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("1838", "1103", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("1839", "1103", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("1840", "1103", "_et_builder_version", "BB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("1841", "1103", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("1842", "1103", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("1843", "1103", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("1844", "1103", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("1845", "1103", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("1846", "1103", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("1847", "763", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("1848", "1105", "_edit_lock", "1531993154:1");
INSERT INTO `wp_postmeta` VALUES("1849", "1105", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1850", "1105", "_et_post_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("1851", "1105", "_et_post_bg_layout", "light");
INSERT INTO `wp_postmeta` VALUES("1852", "1105", "_et_pb_show_title", "on");
INSERT INTO `wp_postmeta` VALUES("1853", "1105", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("1854", "1105", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("1855", "1105", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("1856", "1105", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("1857", "1105", "_et_builder_version", "BB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("1858", "1105", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("1859", "1105", "_et_pb_old_content", "<p>Work\'s almost complete on the new Wolf Blass Museum and Gallery in Hahndorf’s main street. The iconic new attraction encompasses a historic former bank building, and an extensively restored 175-plus-year-old school house.</p><p>The museum will house some of Blass’s original furniture, wine-making artefacts, memorabilia and more. There’s a cooperage with long bar for wine tasting; a barrel room for meetings and events; and plans for outdoor entertaining spaces in the future.</p>");
INSERT INTO `wp_postmeta` VALUES("1860", "1105", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("1861", "1105", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("1862", "1105", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("1863", "1105", "_yoast_wpseo_primary_category", "9");
INSERT INTO `wp_postmeta` VALUES("1864", "1105", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("1865", "1105", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("1867", "1105", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"1105\" /]");
INSERT INTO `wp_postmeta` VALUES("1869", "1109", "_wp_attached_file", "2018/07/The-Barker-1-1.png");
INSERT INTO `wp_postmeta` VALUES("1870", "1109", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1172;s:6:\"height\";i:1730;s:4:\"file\";s:26:\"2018/07/The-Barker-1-1.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"The-Barker-1-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"The-Barker-1-1-203x300.png\";s:5:\"width\";i:203;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"The-Barker-1-1-768x1134.png\";s:5:\"width\";i:768;s:6:\"height\";i:1134;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"The-Barker-1-1-694x1024.png\";s:5:\"width\";i:694;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:26:\"The-Barker-1-1-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:27:\"The-Barker-1-1-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:26:\"The-Barker-1-1-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:26:\"The-Barker-1-1-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:28:\"The-Barker-1-1-1080x1594.png\";s:5:\"width\";i:1080;s:6:\"height\";i:1594;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:26:\"The-Barker-1-1-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("1871", "1105", "_thumbnail_id", "1111");
INSERT INTO `wp_postmeta` VALUES("1873", "1111", "_wp_attached_file", "2018/07/The-Barker.jpg");
INSERT INTO `wp_postmeta` VALUES("1874", "1111", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:490;s:4:\"file\";s:22:\"2018/07/The-Barker.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"The-Barker-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"The-Barker-300x210.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"The-Barker-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"The-Barker-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:22:\"The-Barker-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:22:\"The-Barker-400x490.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:490;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1370265197\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1878", "1114", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("1879", "1114", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("1880", "1114", "_menu_item_object_id", "1103");
INSERT INTO `wp_postmeta` VALUES("1881", "1114", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("1882", "1114", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("1883", "1114", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("1884", "1114", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("1885", "1114", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("1887", "1115", "_edit_lock", "1531992777:1");
INSERT INTO `wp_postmeta` VALUES("1888", "1115", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1889", "1115", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("1890", "1115", "_et_pb_project_nav", "off");
INSERT INTO `wp_postmeta` VALUES("1891", "1115", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("1892", "1115", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("1893", "1115", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("1894", "1115", "_et_builder_version", "BB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("1895", "1115", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("1896", "1115", "_et_pb_old_content", "<p>hgfxjvjh</p>");
INSERT INTO `wp_postmeta` VALUES("1897", "1115", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("1898", "1115", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("1899", "1115", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("1900", "1115", "_yoast_wpseo_primary_project_category", "");
INSERT INTO `wp_postmeta` VALUES("1908", "1119", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1909", "1119", "_edit_lock", "1532337549:1");
INSERT INTO `wp_postmeta` VALUES("1910", "1119", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("1911", "1119", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("1912", "1119", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("1913", "1119", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("1914", "1119", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("1915", "1119", "_et_builder_version", "VB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("1916", "1119", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("1917", "1119", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("1918", "1119", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("1919", "1119", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("1920", "1119", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("1921", "1119", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("1922", "1123", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_1-Copy-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1923", "1123", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:68:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_1-Copy-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:68:\"5-Bennett-Street-Carrickalinga_HighRes_4K_1-Copy-800x533-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:68:\"5-Bennett-Street-Carrickalinga_HighRes_4K_1-Copy-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:68:\"5-Bennett-Street-Carrickalinga_HighRes_4K_1-Copy-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:68:\"5-Bennett-Street-Carrickalinga_HighRes_4K_1-Copy-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:68:\"5-Bennett-Street-Carrickalinga_HighRes_4K_1-Copy-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:68:\"5-Bennett-Street-Carrickalinga_HighRes_4K_1-Copy-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:68:\"5-Bennett-Street-Carrickalinga_HighRes_4K_1-Copy-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515679404\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1924", "1124", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_2-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1925", "1124", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:63:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_2-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_2-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_2-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_2-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_2-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_2-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_2-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_2-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515679312\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1926", "1125", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_3-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1927", "1125", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:63:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_3-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_3-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_3-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_3-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_3-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_3-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_3-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_3-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515679856\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"33\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1928", "1126", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_4-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1929", "1126", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:63:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_4-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_4-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_4-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_4-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_4-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_4-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_4-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_4-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515671253\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:3:\"0.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1930", "1127", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_5-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1931", "1127", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:63:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_5-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_5-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_5-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_5-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_5-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_5-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_5-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_5-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515671370\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:16:\"0.16666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1932", "1128", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_6-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1933", "1128", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:63:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_6-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_6-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_6-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_6-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_6-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_6-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_6-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_6-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515671643\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:3:\"0.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1934", "1129", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_7-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1935", "1129", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:63:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_7-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_7-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_7-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_7-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_7-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_7-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_7-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_7-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515671988\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:3:\"0.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1936", "1130", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_9-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1937", "1130", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:63:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_9-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_9-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_9-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_9-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_9-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_9-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_9-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:63:\"5-Bennett-Street-Carrickalinga_HighRes_4K_9-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515672045\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:3:\"0.5\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1938", "1131", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_10-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1939", "1131", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:64:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_10-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_10-800x533-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:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_10-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_10-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_10-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_10-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_10-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_10-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515672333\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"67\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:3:\"0.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1940", "1132", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_11-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1941", "1132", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:64:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_11-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_11-800x533-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:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_11-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_11-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_11-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_11-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_11-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_11-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"6.3\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515672629\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"60\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1942", "1133", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_12-533x800.jpg");
INSERT INTO `wp_postmeta` VALUES("1943", "1133", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:533;s:6:\"height\";i:800;s:4:\"file\";s:64:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_12-533x800.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_12-533x800-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:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_12-533x800-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_12-533x800-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_12-533x800-533x675.jpg\";s:5:\"width\";i:533;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_12-533x800-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_12-533x800-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_12-533x800-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"6.3\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515672682\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"60\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:4:\"0.04\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1944", "1134", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_13-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1945", "1134", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:64:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_13-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_13-800x533-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:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_13-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_13-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_13-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_13-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_13-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_13-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515672825\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"23\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1946", "1135", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_14-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1947", "1135", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:64:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_14-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_14-800x533-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:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_14-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_14-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_14-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_14-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_14-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_14-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515673240\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1948", "1136", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_15-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1949", "1136", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:64:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_15-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_15-800x533-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:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_15-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_15-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_15-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_15-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_15-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_15-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515673314\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1950", "1137", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_16-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1951", "1137", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:64:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_16-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_16-800x533-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:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_16-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_16-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_16-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_16-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_16-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_16-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515673365\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"26\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1952", "1138", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_17-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1953", "1138", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:64:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_17-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_17-800x533-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:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_17-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_17-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_17-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_17-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_17-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_17-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515673521\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:4:\"0.04\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1954", "1139", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_18-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1955", "1139", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:64:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_18-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_18-800x533-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:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_18-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_18-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_18-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_18-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_18-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_18-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515673634\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1956", "1140", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_19-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1957", "1140", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:64:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_19-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_19-800x533-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:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_19-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_19-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_19-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_19-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_19-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_19-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515673873\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"33\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:3:\"0.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1958", "1141", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_21-533x800.jpg");
INSERT INTO `wp_postmeta` VALUES("1959", "1141", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:533;s:6:\"height\";i:800;s:4:\"file\";s:64:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_21-533x800.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_21-533x800-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:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_21-533x800-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_21-533x800-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_21-533x800-533x675.jpg\";s:5:\"width\";i:533;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_21-533x800-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_21-533x800-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_21-533x800-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515674291\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:4:\"0.25\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1960", "1142", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_22-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1961", "1142", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:64:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_22-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_22-800x533-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:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_22-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_22-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_22-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_22-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_22-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_22-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515674421\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"31\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1962", "1143", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_23-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1963", "1143", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:64:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_23-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_23-800x533-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:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_23-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_23-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_23-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_23-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_23-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_23-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515674668\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1964", "1144", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_24-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1965", "1144", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:64:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_24-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_24-800x533-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:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_24-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_24-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_24-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_24-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_24-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_24-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515674900\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"45\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:4:\"0.25\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1966", "1145", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_25-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1967", "1145", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:64:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_25-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_25-800x533-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:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_25-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_25-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_25-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_25-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_25-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_25-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515675015\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:4:\"0.25\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1968", "1146", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_26-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1969", "1146", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:64:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_26-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_26-800x533-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:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_26-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_26-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_26-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_26-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_26-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_26-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515675094\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:4:\"0.25\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1970", "1147", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_27-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1971", "1147", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:64:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_27-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_27-800x533-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:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_27-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_27-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_27-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_27-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_27-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_27-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515675170\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:3:\"0.4\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1972", "1148", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_28-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1973", "1148", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:64:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_28-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_28-800x533-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:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_28-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_28-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_28-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_28-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_28-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_28-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515675581\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1974", "1149", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_29-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1975", "1149", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:64:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_29-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_29-800x533-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:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_29-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_29-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_29-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_29-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_29-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_29-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515675833\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1976", "1150", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_30-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1977", "1150", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:64:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_30-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_30-800x533-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:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_30-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_30-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_30-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_30-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_30-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_30-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515675953\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1978", "1151", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_33-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1979", "1151", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:64:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_33-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_33-800x533-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:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_33-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_33-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_33-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_33-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_33-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_33-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515676255\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1980", "1152", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_34-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1981", "1152", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:64:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_34-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_34-800x533-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:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_34-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_34-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_34-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_34-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_34-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_34-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515676853\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1982", "1153", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_35-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1983", "1153", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:64:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_35-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_35-800x533-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:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_35-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_35-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_35-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_35-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_35-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_35-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515677088\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:16:\"0.16666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1984", "1154", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_36-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1985", "1154", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:64:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_36-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_36-800x533-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:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_36-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_36-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_36-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_36-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_36-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_36-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515677241\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"23\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:3:\"0.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1986", "1155", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_37-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1987", "1155", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:64:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_37-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_37-800x533-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:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_37-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_37-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_37-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_37-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_37-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_37-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515677590\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"28\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1988", "1156", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_38-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1989", "1156", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:64:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_38-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_38-800x533-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:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_38-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_38-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_38-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_38-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_38-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_38-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515677770\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1990", "1157", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_39-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1991", "1157", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:64:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_39-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_39-800x533-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:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_39-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_39-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_39-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_39-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_39-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_39-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515677825\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"30\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1992", "1158", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_40-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1993", "1158", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:64:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_40-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_40-800x533-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:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_40-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_40-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_40-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_40-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_40-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_40-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515678012\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"55\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1994", "1159", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_41-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1995", "1159", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:64:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_41-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_41-800x533-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:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_41-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_41-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_41-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_41-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_41-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_41-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515678300\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1996", "1160", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_42-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1997", "1160", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:64:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_42-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_42-800x533-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:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_42-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_42-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_42-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_42-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_42-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_42-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515678363\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("1998", "1161", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_43-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("1999", "1161", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:64:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_43-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_43-800x533-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:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_43-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_43-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_43-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_43-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_43-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_43-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515678443\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2000", "1162", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_44-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("2001", "1162", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:64:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_44-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_44-800x533-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:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_44-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_44-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_44-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_44-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_44-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_44-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515678518\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2002", "1163", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_45-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("2003", "1163", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:64:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_45-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_45-800x533-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:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_45-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_45-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_45-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_45-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_45-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_45-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515678566\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2004", "1164", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_46-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("2005", "1164", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:64:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_46-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_46-800x533-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:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_46-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_46-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_46-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_46-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_46-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_46-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515678566\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2006", "1165", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_47-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("2007", "1165", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:64:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_47-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_47-800x533-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:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_47-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_47-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_47-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_47-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_47-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_47-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515678659\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2008", "1166", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_48-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("2009", "1166", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:64:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_48-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_48-800x533-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:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_48-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_48-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_48-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_48-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_48-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_48-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515678694\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"27\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2010", "1167", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_49-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("2011", "1167", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:64:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_49-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_49-800x533-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:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_49-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_49-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_49-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_49-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_49-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_49-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515678796\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2012", "1168", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_50-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("2013", "1168", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:64:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_50-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_50-800x533-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:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_50-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_50-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_50-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_50-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_50-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_50-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515678967\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"29\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2014", "1169", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_51-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("2015", "1169", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:64:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_51-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_51-800x533-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:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_51-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_51-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_51-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_51-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_51-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_51-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515679048\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2016", "1170", "_wp_attached_file", "2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_52-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("2017", "1170", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:64:\"2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_52-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_52-800x533-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:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_52-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_52-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_52-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_52-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_52-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"5-Bennett-Street-Carrickalinga_HighRes_4K_52-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1515679121\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2018", "1119", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("2019", "1119", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("2020", "1119", "_et_pb_ab_subjects", "");
INSERT INTO `wp_postmeta` VALUES("2021", "1119", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"1119\" /]");
INSERT INTO `wp_postmeta` VALUES("2022", "1176", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2023", "1176", "_edit_lock", "1532338816:1");
INSERT INTO `wp_postmeta` VALUES("2024", "1176", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("2025", "1176", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("2026", "1176", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("2027", "1176", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("2028", "1176", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("2029", "1176", "_et_builder_version", "VB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("2030", "1176", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("2031", "1176", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("2032", "1176", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("2033", "1176", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("2034", "1176", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("2035", "1176", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("2036", "1179", "_wp_attached_file", "2018/07/WEB_70_Hogan_Dusk__27_of_35_-800x534.jpg");
INSERT INTO `wp_postmeta` VALUES("2037", "1179", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:534;s:4:\"file\";s:48:\"2018/07/WEB_70_Hogan_Dusk__27_of_35_-800x534.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__27_of_35_-800x534-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:48:\"WEB_70_Hogan_Dusk__27_of_35_-800x534-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__27_of_35_-800x534-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__27_of_35_-800x534-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__27_of_35_-800x534-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__27_of_35_-800x534-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__27_of_35_-800x534-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1531802076\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:15:\"ÿØÿáKÏExif\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2038", "1180", "_wp_attached_file", "2018/07/WEB_70_Hogan_Dusk__26_of_35_-800x534.jpg");
INSERT INTO `wp_postmeta` VALUES("2039", "1180", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:534;s:4:\"file\";s:48:\"2018/07/WEB_70_Hogan_Dusk__26_of_35_-800x534.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__26_of_35_-800x534-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:48:\"WEB_70_Hogan_Dusk__26_of_35_-800x534-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__26_of_35_-800x534-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__26_of_35_-800x534-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__26_of_35_-800x534-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__26_of_35_-800x534-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__26_of_35_-800x534-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1531802070\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:15:\"ÿØÿáKÐExif\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2040", "1181", "_wp_attached_file", "2018/07/WEB_70_Hogan_Dusk__31_of_35_-800x534.jpg");
INSERT INTO `wp_postmeta` VALUES("2041", "1181", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:534;s:4:\"file\";s:48:\"2018/07/WEB_70_Hogan_Dusk__31_of_35_-800x534.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__31_of_35_-800x534-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:48:\"WEB_70_Hogan_Dusk__31_of_35_-800x534-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__31_of_35_-800x534-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__31_of_35_-800x534-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__31_of_35_-800x534-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__31_of_35_-800x534-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__31_of_35_-800x534-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1531802088\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:15:\"ÿØÿáRîExif\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2042", "1182", "_wp_attached_file", "2018/07/WEB_70_Hogan_Dusk__23_of_35_-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("2043", "1182", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:48:\"2018/07/WEB_70_Hogan_Dusk__23_of_35_-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__23_of_35_-800x533-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:48:\"WEB_70_Hogan_Dusk__23_of_35_-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__23_of_35_-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__23_of_35_-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__23_of_35_-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__23_of_35_-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__23_of_35_-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1531802056\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:15:\"ÿØÿáPÂExif\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2044", "1183", "_wp_attached_file", "2018/07/WEB_70_Hogan_Dusk__29_of_35_-800x534.jpg");
INSERT INTO `wp_postmeta` VALUES("2045", "1183", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:534;s:4:\"file\";s:48:\"2018/07/WEB_70_Hogan_Dusk__29_of_35_-800x534.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__29_of_35_-800x534-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:48:\"WEB_70_Hogan_Dusk__29_of_35_-800x534-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__29_of_35_-800x534-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__29_of_35_-800x534-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__29_of_35_-800x534-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__29_of_35_-800x534-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__29_of_35_-800x534-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1531802080\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:14:\"ÿØÿáFExif\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2046", "1184", "_wp_attached_file", "2018/07/WEB_70_Hogan_Dusk__24_of_35_-800x534.jpg");
INSERT INTO `wp_postmeta` VALUES("2047", "1184", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:534;s:4:\"file\";s:48:\"2018/07/WEB_70_Hogan_Dusk__24_of_35_-800x534.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__24_of_35_-800x534-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:48:\"WEB_70_Hogan_Dusk__24_of_35_-800x534-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__24_of_35_-800x534-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__24_of_35_-800x534-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__24_of_35_-800x534-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__24_of_35_-800x534-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__24_of_35_-800x534-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1531802062\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:14:\"ÿØÿáK-Exif\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2048", "1185", "_wp_attached_file", "2018/07/WEB_PRINT_70_Hogan_Day__52_of_62_-800x534.jpg");
INSERT INTO `wp_postmeta` VALUES("2049", "1185", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:534;s:4:\"file\";s:53:\"2018/07/WEB_PRINT_70_Hogan_Day__52_of_62_-800x534.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"WEB_PRINT_70_Hogan_Day__52_of_62_-800x534-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"WEB_PRINT_70_Hogan_Day__52_of_62_-800x534-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:53:\"WEB_PRINT_70_Hogan_Day__52_of_62_-800x534-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:53:\"WEB_PRINT_70_Hogan_Day__52_of_62_-800x534-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:53:\"WEB_PRINT_70_Hogan_Day__52_of_62_-800x534-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:53:\"WEB_PRINT_70_Hogan_Day__52_of_62_-800x534-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:53:\"WEB_PRINT_70_Hogan_Day__52_of_62_-800x534-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1531802104\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:12:\"ÿØÿáExif\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2050", "1186", "_wp_attached_file", "2018/07/WEB_70_Hogan_Dusk__16_of_35_-800x534.jpg");
INSERT INTO `wp_postmeta` VALUES("2051", "1186", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:534;s:4:\"file\";s:48:\"2018/07/WEB_70_Hogan_Dusk__16_of_35_-800x534.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__16_of_35_-800x534-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:48:\"WEB_70_Hogan_Dusk__16_of_35_-800x534-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__16_of_35_-800x534-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__16_of_35_-800x534-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__16_of_35_-800x534-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__16_of_35_-800x534-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__16_of_35_-800x534-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1531802042\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:14:\"ÿØÿáLsExif\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2052", "1187", "_wp_attached_file", "2018/07/WEB_70_Hogan_Dusk__14_of_35_-800x534.jpg");
INSERT INTO `wp_postmeta` VALUES("2053", "1187", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:534;s:4:\"file\";s:48:\"2018/07/WEB_70_Hogan_Dusk__14_of_35_-800x534.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__14_of_35_-800x534-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:48:\"WEB_70_Hogan_Dusk__14_of_35_-800x534-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__14_of_35_-800x534-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__14_of_35_-800x534-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__14_of_35_-800x534-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__14_of_35_-800x534-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__14_of_35_-800x534-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1531802036\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:16:\"ÿØÿáC‚Exif\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2054", "1188", "_wp_attached_file", "2018/07/WEB_70_Hogan_Dusk__19_of_35_-800x534.jpg");
INSERT INTO `wp_postmeta` VALUES("2055", "1188", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:534;s:4:\"file\";s:48:\"2018/07/WEB_70_Hogan_Dusk__19_of_35_-800x534.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__19_of_35_-800x534-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:48:\"WEB_70_Hogan_Dusk__19_of_35_-800x534-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__19_of_35_-800x534-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__19_of_35_-800x534-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__19_of_35_-800x534-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__19_of_35_-800x534-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__19_of_35_-800x534-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1531802048\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:14:\"ÿØÿáD5Exif\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2056", "1189", "_wp_attached_file", "2018/07/WEB_70_Hogan_Dusk__2_of_35_-800x534.jpg");
INSERT INTO `wp_postmeta` VALUES("2057", "1189", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:534;s:4:\"file\";s:47:\"2018/07/WEB_70_Hogan_Dusk__2_of_35_-800x534.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"WEB_70_Hogan_Dusk__2_of_35_-800x534-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"WEB_70_Hogan_Dusk__2_of_35_-800x534-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"WEB_70_Hogan_Dusk__2_of_35_-800x534-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:47:\"WEB_70_Hogan_Dusk__2_of_35_-800x534-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:47:\"WEB_70_Hogan_Dusk__2_of_35_-800x534-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:47:\"WEB_70_Hogan_Dusk__2_of_35_-800x534-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:47:\"WEB_70_Hogan_Dusk__2_of_35_-800x534-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1531801738\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:14:\"ÿØÿá=jExif\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2058", "1190", "_wp_attached_file", "2018/07/WEB_70_Hogan_Dusk__8_of_35_-800x534.jpg");
INSERT INTO `wp_postmeta` VALUES("2059", "1190", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:534;s:4:\"file\";s:47:\"2018/07/WEB_70_Hogan_Dusk__8_of_35_-800x534.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"WEB_70_Hogan_Dusk__8_of_35_-800x534-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"WEB_70_Hogan_Dusk__8_of_35_-800x534-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"WEB_70_Hogan_Dusk__8_of_35_-800x534-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:47:\"WEB_70_Hogan_Dusk__8_of_35_-800x534-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:47:\"WEB_70_Hogan_Dusk__8_of_35_-800x534-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:47:\"WEB_70_Hogan_Dusk__8_of_35_-800x534-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:47:\"WEB_70_Hogan_Dusk__8_of_35_-800x534-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1531801742\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:18:\"ÿØÿá&gt;Exif\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2060", "1191", "_wp_attached_file", "2018/07/WEB_70_Hogan_Dusk__1_of_35_-800x534.jpg");
INSERT INTO `wp_postmeta` VALUES("2061", "1191", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:534;s:4:\"file\";s:47:\"2018/07/WEB_70_Hogan_Dusk__1_of_35_-800x534.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"WEB_70_Hogan_Dusk__1_of_35_-800x534-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"WEB_70_Hogan_Dusk__1_of_35_-800x534-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"WEB_70_Hogan_Dusk__1_of_35_-800x534-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:47:\"WEB_70_Hogan_Dusk__1_of_35_-800x534-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:47:\"WEB_70_Hogan_Dusk__1_of_35_-800x534-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:47:\"WEB_70_Hogan_Dusk__1_of_35_-800x534-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:47:\"WEB_70_Hogan_Dusk__1_of_35_-800x534-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1531801734\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:15:\"ÿØÿá9úExif\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2062", "1192", "_wp_attached_file", "2018/07/WEB_70_Hogan_Dusk__4_of_35_-800x534.jpg");
INSERT INTO `wp_postmeta` VALUES("2063", "1192", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:534;s:4:\"file\";s:47:\"2018/07/WEB_70_Hogan_Dusk__4_of_35_-800x534.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"WEB_70_Hogan_Dusk__4_of_35_-800x534-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"WEB_70_Hogan_Dusk__4_of_35_-800x534-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"WEB_70_Hogan_Dusk__4_of_35_-800x534-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:47:\"WEB_70_Hogan_Dusk__4_of_35_-800x534-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:47:\"WEB_70_Hogan_Dusk__4_of_35_-800x534-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:47:\"WEB_70_Hogan_Dusk__4_of_35_-800x534-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:47:\"WEB_70_Hogan_Dusk__4_of_35_-800x534-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1531801730\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:15:\"ÿØÿá;ÍExif\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2064", "1193", "_wp_attached_file", "2018/07/WEB_70_Hogan_Dusk__9_of_35_-800x534.jpg");
INSERT INTO `wp_postmeta` VALUES("2065", "1193", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:534;s:4:\"file\";s:47:\"2018/07/WEB_70_Hogan_Dusk__9_of_35_-800x534.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"WEB_70_Hogan_Dusk__9_of_35_-800x534-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"WEB_70_Hogan_Dusk__9_of_35_-800x534-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"WEB_70_Hogan_Dusk__9_of_35_-800x534-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:47:\"WEB_70_Hogan_Dusk__9_of_35_-800x534-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:47:\"WEB_70_Hogan_Dusk__9_of_35_-800x534-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:47:\"WEB_70_Hogan_Dusk__9_of_35_-800x534-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:47:\"WEB_70_Hogan_Dusk__9_of_35_-800x534-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1531801844\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:8:\"ÿØÿá\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2066", "1194", "_wp_attached_file", "2018/07/WEB_70_Hogan_Dusk__10_of_35_-800x534.jpg");
INSERT INTO `wp_postmeta` VALUES("2067", "1194", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:534;s:4:\"file\";s:48:\"2018/07/WEB_70_Hogan_Dusk__10_of_35_-800x534.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__10_of_35_-800x534-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:48:\"WEB_70_Hogan_Dusk__10_of_35_-800x534-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__10_of_35_-800x534-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__10_of_35_-800x534-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__10_of_35_-800x534-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__10_of_35_-800x534-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:48:\"WEB_70_Hogan_Dusk__10_of_35_-800x534-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1531801898\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:15:\"ÿØÿá7ÑExif\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2068", "1176", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("2069", "1176", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("2070", "1176", "_et_pb_ab_subjects", "");
INSERT INTO `wp_postmeta` VALUES("2071", "1176", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"1176\" /]");
INSERT INTO `wp_postmeta` VALUES("2072", "1196", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("2073", "1196", "_menu_item_menu_item_parent", "172");
INSERT INTO `wp_postmeta` VALUES("2074", "1196", "_menu_item_object_id", "1176");
INSERT INTO `wp_postmeta` VALUES("2075", "1196", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("2076", "1196", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2077", "1196", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2078", "1196", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2079", "1196", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2090", "1198", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2081", "1197", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("2082", "1197", "_menu_item_menu_item_parent", "172");
INSERT INTO `wp_postmeta` VALUES("2083", "1197", "_menu_item_object_id", "1119");
INSERT INTO `wp_postmeta` VALUES("2084", "1197", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("2085", "1197", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2086", "1197", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2087", "1197", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2088", "1197", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2091", "1198", "_edit_lock", "1532339871:1");
INSERT INTO `wp_postmeta` VALUES("2092", "1198", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("2093", "1198", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("2094", "1198", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("2095", "1198", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("2096", "1198", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("2097", "1198", "_et_builder_version", "VB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("2098", "1198", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("2099", "1198", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("2100", "1198", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("2101", "1198", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("2102", "1198", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("2103", "1198", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("2104", "1200", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("2105", "1200", "_menu_item_menu_item_parent", "203");
INSERT INTO `wp_postmeta` VALUES("2106", "1200", "_menu_item_object_id", "1198");
INSERT INTO `wp_postmeta` VALUES("2107", "1200", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("2108", "1200", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2109", "1200", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2110", "1200", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2111", "1200", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2112", "1198", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("2113", "1198", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("2114", "1198", "_et_pb_ab_subjects", "");
INSERT INTO `wp_postmeta` VALUES("2115", "1198", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"1198\" /]");
INSERT INTO `wp_postmeta` VALUES("2116", "1206", "_wp_attached_file", "2018/07/177-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("2117", "1206", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:23:\"2018/07/177-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"177-800x533-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:\"177-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"177-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"177-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"177-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:23:\"177-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:23:\"177-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1436367137\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2118", "1207", "_wp_attached_file", "2018/07/184-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("2119", "1207", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:23:\"2018/07/184-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"184-800x533-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:\"184-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"184-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"184-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"184-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:23:\"184-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:23:\"184-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"16\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1436367143\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2120", "1208", "_wp_attached_file", "2018/07/External-Road-REV-A-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("2121", "1208", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:39:\"2018/07/External-Road-REV-A-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"External-Road-REV-A-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"External-Road-REV-A-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"External-Road-REV-A-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"External-Road-REV-A-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"External-Road-REV-A-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"External-Road-REV-A-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"External-Road-REV-A-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1531914923\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("2122", "1209", "_wp_attached_file", "2018/07/External-REV-A-800x379.jpg");
INSERT INTO `wp_postmeta` VALUES("2123", "1209", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:379;s:4:\"file\";s:34:\"2018/07/External-REV-A-800x379.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"External-REV-A-800x379-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"External-REV-A-800x379-300x142.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"External-REV-A-800x379-768x364.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:364;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"External-REV-A-800x379-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"External-REV-A-800x379-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"External-REV-A-800x379-510x379.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:379;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"External-REV-A-800x379-400x379.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:379;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1531914913\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("2124", "1210", "_wp_attached_file", "2018/07/Internal-REV-A-800x443.jpg");
INSERT INTO `wp_postmeta` VALUES("2125", "1210", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:443;s:4:\"file\";s:34:\"2018/07/Internal-REV-A-800x443.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Internal-REV-A-800x443-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Internal-REV-A-800x443-300x166.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:166;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"Internal-REV-A-800x443-768x425.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:425;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"Internal-REV-A-800x443-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"Internal-REV-A-800x443-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"Internal-REV-A-800x443-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"Internal-REV-A-800x443-400x443.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:443;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1531914933\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("2126", "1213", "_wp_attached_file", "2018/07/001-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("2127", "1213", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:23:\"2018/07/001-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"001-800x533-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:\"001-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"001-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"001-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"001-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:23:\"001-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:23:\"001-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1459950101\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2128", "1215", "_wp_attached_file", "2018/07/Perspective-REV-B-AUGUST-800x403.jpg");
INSERT INTO `wp_postmeta` VALUES("2129", "1215", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:403;s:4:\"file\";s:44:\"2018/07/Perspective-REV-B-AUGUST-800x403.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"Perspective-REV-B-AUGUST-800x403-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:44:\"Perspective-REV-B-AUGUST-800x403-300x151.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:151;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"Perspective-REV-B-AUGUST-800x403-768x387.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:387;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:44:\"Perspective-REV-B-AUGUST-800x403-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:44:\"Perspective-REV-B-AUGUST-800x403-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:44:\"Perspective-REV-B-AUGUST-800x403-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:44:\"Perspective-REV-B-AUGUST-800x403-400x403.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1531393976\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("2130", "1214", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2131", "1214", "_edit_lock", "1532917762:1");
INSERT INTO `wp_postmeta` VALUES("2132", "1214", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("2133", "1214", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("2134", "1214", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("2135", "1214", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("2136", "1214", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("2137", "1214", "_et_builder_version", "BB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("2138", "1214", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("2139", "1214", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("2140", "1214", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("2141", "1214", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("2142", "1214", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("2143", "1214", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("2430", "1448", "_wp_desired_post_slug", "");
INSERT INTO `wp_postmeta` VALUES("2429", "1448", "_wp_trash_meta_time", "1532908997");
INSERT INTO `wp_postmeta` VALUES("2428", "1448", "_wp_trash_meta_status", "auto-draft");
INSERT INTO `wp_postmeta` VALUES("2153", "1214", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("2154", "1214", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("2156", "1214", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"1214\" /]");
INSERT INTO `wp_postmeta` VALUES("2157", "1223", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2158", "1223", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("2159", "1223", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("2160", "1223", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("2161", "1223", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("2162", "1223", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("2163", "1223", "_et_builder_version", "VB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("2164", "1223", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("2165", "1223", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("2166", "1223", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("2167", "1223", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("2168", "1223", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("2169", "1223", "_edit_lock", "1532341828:1");
INSERT INTO `wp_postmeta` VALUES("2170", "1226", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("2171", "1226", "_menu_item_menu_item_parent", "203");
INSERT INTO `wp_postmeta` VALUES("2172", "1226", "_menu_item_object_id", "1223");
INSERT INTO `wp_postmeta` VALUES("2173", "1226", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("2174", "1226", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2175", "1226", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2176", "1226", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2177", "1226", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2179", "1223", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("2180", "1228", "_wp_attached_file", "2018/07/IMG_8392-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("2181", "1228", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:28:\"2018/07/IMG_8392-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_8392-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_8392-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"IMG_8392-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_8392-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_8392-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_8392-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_8392-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1509721196\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2182", "1229", "_wp_attached_file", "2018/07/IMG_8384-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("2183", "1229", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:28:\"2018/07/IMG_8384-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_8384-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_8384-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"IMG_8384-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_8384-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_8384-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_8384-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_8384-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"20\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1509721181\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2184", "1230", "_wp_attached_file", "2018/07/CAMBRIDGE-WOODSIDE-SUPERMARKET-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("2185", "1230", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:50:\"2018/07/CAMBRIDGE-WOODSIDE-SUPERMARKET-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"CAMBRIDGE-WOODSIDE-SUPERMARKET-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"CAMBRIDGE-WOODSIDE-SUPERMARKET-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:50:\"CAMBRIDGE-WOODSIDE-SUPERMARKET-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:50:\"CAMBRIDGE-WOODSIDE-SUPERMARKET-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:50:\"CAMBRIDGE-WOODSIDE-SUPERMARKET-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:50:\"CAMBRIDGE-WOODSIDE-SUPERMARKET-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:50:\"CAMBRIDGE-WOODSIDE-SUPERMARKET-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1531484483\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("2186", "1231", "_wp_attached_file", "2018/07/IMG_8482-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("2187", "1231", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:28:\"2018/07/IMG_8482-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_8482-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_8482-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"IMG_8482-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_8482-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_8482-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_8482-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_8482-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510056032\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2188", "1223", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("2189", "1223", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("2190", "1223", "_et_pb_ab_subjects", "");
INSERT INTO `wp_postmeta` VALUES("2191", "1223", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"1223\" /]");
INSERT INTO `wp_postmeta` VALUES("2192", "1235", "_et_pb_row_layout", "1_4,1_4,1_4,1_4");
INSERT INTO `wp_postmeta` VALUES("2193", "1235", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("2194", "152", "_et_pb_ab_subjects", "");
INSERT INTO `wp_postmeta` VALUES("2195", "175", "_et_pb_ab_subjects", "");
INSERT INTO `wp_postmeta` VALUES("2196", "195", "_et_pb_ab_subjects", "");
INSERT INTO `wp_postmeta` VALUES("2197", "1246", "_wp_attached_file", "2018/07/Wolf-Blass-e1532408310586.jpg");
INSERT INTO `wp_postmeta` VALUES("2198", "1246", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:500;s:6:\"height\";i:333;s:4:\"file\";s:37:\"2018/07/Wolf-Blass-e1532408310586.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Wolf-Blass-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Wolf-Blass-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"Wolf-Blass-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"Wolf-Blass-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"Wolf-Blass-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:23:\"Wolf-Blass-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"Wolf-Blass-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:22:\"Wolf-Blass-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:23:\"Wolf-Blass-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:22:\"Wolf-Blass-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:24:\"Wolf-Blass-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:29:\"www.facebook.com/kensohstudio\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:29:\"www.facebook.com/kensohstudio\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2199", "1246", "_edit_lock", "1532408259:1");
INSERT INTO `wp_postmeta` VALUES("2200", "1247", "_wp_attached_file", "2018/07/Duttons-e1532408372907.jpg");
INSERT INTO `wp_postmeta` VALUES("2201", "1246", "_wp_attachment_backup_sizes", "a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:4242;s:6:\"height\";i:2828;s:4:\"file\";s:14:\"Wolf-Blass.jpg\";}}");
INSERT INTO `wp_postmeta` VALUES("2202", "1247", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:500;s:6:\"height\";i:333;s:4:\"file\";s:34:\"2018/07/Duttons-e1532408372907.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Duttons-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:\"Duttons-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"Duttons-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"Duttons-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"Duttons-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"Duttons-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"Duttons-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"Duttons-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:20:\"Duttons-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"Duttons-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:21:\"Duttons-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:29:\"www.facebook.com/kensohstudio\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:29:\"www.facebook.com/kensohstudio\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2203", "1246", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2204", "1246", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("2205", "1247", "_edit_lock", "1532409227:1");
INSERT INTO `wp_postmeta` VALUES("2206", "1247", "_wp_attachment_backup_sizes", "a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:4242;s:6:\"height\";i:2828;s:4:\"file\";s:11:\"Duttons.jpg\";}}");
INSERT INTO `wp_postmeta` VALUES("2207", "1247", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2208", "1247", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("2209", "1259", "_wp_attached_file", "2018/07/2__MCOLES__MKC5304-1024x684.jpg");
INSERT INTO `wp_postmeta` VALUES("2210", "1259", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:684;s:4:\"file\";s:39:\"2018/07/2__MCOLES__MKC5304-1024x684.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"2__MCOLES__MKC5304-1024x684-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"2__MCOLES__MKC5304-1024x684-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"2__MCOLES__MKC5304-1024x684-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"2__MCOLES__MKC5304-1024x684-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"2__MCOLES__MKC5304-1024x684-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:40:\"2__MCOLES__MKC5304-1024x684-1024x675.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"2__MCOLES__MKC5304-1024x684-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"2__MCOLES__MKC5304-1024x684-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"2__MCOLES__MKC5304-1024x684-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.5\";s:6:\"credit\";s:13:\"Meaghan Coles\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:104:\"Photos by www.facebook.com/meaghancoles.nowandthenphotography           www.nowandthenphotography.com.au\";s:17:\"created_timestamp\";s:10:\"1516779707\";s:9:\"copyright\";s:13:\"Meaghan Coles\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:9:{i:0;s:8:\"Adelaide\";i:1;s:13:\"Meaghan Coles\";i:2;s:8:\"cocktail\";i:3;s:5:\"event\";i:4;s:4:\"food\";i:5;s:12:\"photographer\";i:6;s:11:\"photography\";i:7;s:6:\"social\";i:8;s:7:\"wedding\";}}}");
INSERT INTO `wp_postmeta` VALUES("2211", "1260", "_wp_attached_file", "2018/07/3__MCOLES__MKC5307-1024x684.jpg");
INSERT INTO `wp_postmeta` VALUES("2212", "1260", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:684;s:4:\"file\";s:39:\"2018/07/3__MCOLES__MKC5307-1024x684.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"3__MCOLES__MKC5307-1024x684-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"3__MCOLES__MKC5307-1024x684-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"3__MCOLES__MKC5307-1024x684-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"3__MCOLES__MKC5307-1024x684-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"3__MCOLES__MKC5307-1024x684-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:40:\"3__MCOLES__MKC5307-1024x684-1024x675.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"3__MCOLES__MKC5307-1024x684-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"3__MCOLES__MKC5307-1024x684-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"3__MCOLES__MKC5307-1024x684-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:13:\"Meaghan Coles\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:104:\"Photos by www.facebook.com/meaghancoles.nowandthenphotography           www.nowandthenphotography.com.au\";s:17:\"created_timestamp\";s:10:\"1516779814\";s:9:\"copyright\";s:13:\"Meaghan Coles\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:9:{i:0;s:8:\"cocktail\";i:1;s:4:\"food\";i:2;s:5:\"event\";i:3;s:6:\"social\";i:4;s:11:\"photography\";i:5;s:8:\"adelaide\";i:6;s:7:\"wedding\";i:7;s:13:\"Meaghan Coles\";i:8;s:12:\"photographer\";}}}");
INSERT INTO `wp_postmeta` VALUES("2213", "1261", "_wp_attached_file", "2018/07/116__MCOLES__MKC5825-1024x684.jpg");
INSERT INTO `wp_postmeta` VALUES("2214", "1261", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:684;s:4:\"file\";s:41:\"2018/07/116__MCOLES__MKC5825-1024x684.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"116__MCOLES__MKC5825-1024x684-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"116__MCOLES__MKC5825-1024x684-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"116__MCOLES__MKC5825-1024x684-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"116__MCOLES__MKC5825-1024x684-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"116__MCOLES__MKC5825-1024x684-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:42:\"116__MCOLES__MKC5825-1024x684-1024x675.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"116__MCOLES__MKC5825-1024x684-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"116__MCOLES__MKC5825-1024x684-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"116__MCOLES__MKC5825-1024x684-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:13:\"Meaghan Coles\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:104:\"Photos by www.facebook.com/meaghancoles.nowandthenphotography           www.nowandthenphotography.com.au\";s:17:\"created_timestamp\";s:10:\"1516793647\";s:9:\"copyright\";s:13:\"Meaghan Coles\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:9:{i:0;s:8:\"cocktail\";i:1;s:4:\"food\";i:2;s:5:\"event\";i:3;s:6:\"social\";i:4;s:11:\"photography\";i:5;s:8:\"adelaide\";i:6;s:7:\"wedding\";i:7;s:13:\"Meaghan Coles\";i:8;s:12:\"photographer\";}}}");
INSERT INTO `wp_postmeta` VALUES("2215", "1262", "_wp_attached_file", "2018/07/125__MCOLES__MKC0338-1024x684.jpg");
INSERT INTO `wp_postmeta` VALUES("2216", "1262", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:684;s:4:\"file\";s:41:\"2018/07/125__MCOLES__MKC0338-1024x684.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"125__MCOLES__MKC0338-1024x684-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"125__MCOLES__MKC0338-1024x684-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"125__MCOLES__MKC0338-1024x684-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"125__MCOLES__MKC0338-1024x684-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"125__MCOLES__MKC0338-1024x684-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:42:\"125__MCOLES__MKC0338-1024x684-1024x675.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"125__MCOLES__MKC0338-1024x684-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"125__MCOLES__MKC0338-1024x684-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"125__MCOLES__MKC0338-1024x684-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.5\";s:6:\"credit\";s:13:\"Meaghan Coles\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:104:\"Photos by www.facebook.com/meaghancoles.nowandthenphotography           www.nowandthenphotography.com.au\";s:17:\"created_timestamp\";s:10:\"1517843848\";s:9:\"copyright\";s:13:\"Meaghan Coles\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:9:{i:0;s:8:\"cocktail\";i:1;s:4:\"food\";i:2;s:5:\"event\";i:3;s:6:\"social\";i:4;s:11:\"photography\";i:5;s:8:\"adelaide\";i:6;s:7:\"wedding\";i:7;s:13:\"Meaghan Coles\";i:8;s:12:\"photographer\";}}}");
INSERT INTO `wp_postmeta` VALUES("2217", "1263", "_wp_attached_file", "2018/07/128__MCOLES__MKC0347-684x1024.jpg");
INSERT INTO `wp_postmeta` VALUES("2218", "1263", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:684;s:6:\"height\";i:1024;s:4:\"file\";s:41:\"2018/07/128__MCOLES__MKC0347-684x1024.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"128__MCOLES__MKC0347-684x1024-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"128__MCOLES__MKC0347-684x1024-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"128__MCOLES__MKC0347-684x1024-684x1024.jpg\";s:5:\"width\";i:684;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"128__MCOLES__MKC0347-684x1024-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:41:\"128__MCOLES__MKC0347-684x1024-684x675.jpg\";s:5:\"width\";i:684;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"128__MCOLES__MKC0347-684x1024-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"128__MCOLES__MKC0347-684x1024-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"128__MCOLES__MKC0347-684x1024-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:13:\"Meaghan Coles\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:104:\"Photos by www.facebook.com/meaghancoles.nowandthenphotography           www.nowandthenphotography.com.au\";s:17:\"created_timestamp\";s:10:\"1517843932\";s:9:\"copyright\";s:13:\"Meaghan Coles\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:9:{i:0;s:8:\"cocktail\";i:1;s:4:\"food\";i:2;s:5:\"event\";i:3;s:6:\"social\";i:4;s:11:\"photography\";i:5;s:8:\"adelaide\";i:6;s:7:\"wedding\";i:7;s:13:\"Meaghan Coles\";i:8;s:12:\"photographer\";}}}");
INSERT INTO `wp_postmeta` VALUES("2219", "1264", "_wp_attached_file", "2018/07/144__MCOLES__MKC5970-684x1024.jpg");
INSERT INTO `wp_postmeta` VALUES("2220", "1264", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:684;s:6:\"height\";i:1024;s:4:\"file\";s:41:\"2018/07/144__MCOLES__MKC5970-684x1024.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"144__MCOLES__MKC5970-684x1024-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"144__MCOLES__MKC5970-684x1024-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"144__MCOLES__MKC5970-684x1024-684x1024.jpg\";s:5:\"width\";i:684;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"144__MCOLES__MKC5970-684x1024-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:41:\"144__MCOLES__MKC5970-684x1024-684x675.jpg\";s:5:\"width\";i:684;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"144__MCOLES__MKC5970-684x1024-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"144__MCOLES__MKC5970-684x1024-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"144__MCOLES__MKC5970-684x1024-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:13:\"Meaghan Coles\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:104:\"Photos by www.facebook.com/meaghancoles.nowandthenphotography           www.nowandthenphotography.com.au\";s:17:\"created_timestamp\";s:10:\"1516797395\";s:9:\"copyright\";s:13:\"Meaghan Coles\";s:12:\"focal_length\";s:2:\"90\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:9:{i:0;s:8:\"cocktail\";i:1;s:4:\"food\";i:2;s:5:\"event\";i:3;s:6:\"social\";i:4;s:11:\"photography\";i:5;s:8:\"adelaide\";i:6;s:7:\"wedding\";i:7;s:13:\"Meaghan Coles\";i:8;s:12:\"photographer\";}}}");
INSERT INTO `wp_postmeta` VALUES("2221", "1265", "_wp_attached_file", "2018/07/159__MCOLES__MKC6044-1024x684.jpg");
INSERT INTO `wp_postmeta` VALUES("2222", "1265", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:684;s:4:\"file\";s:41:\"2018/07/159__MCOLES__MKC6044-1024x684.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"159__MCOLES__MKC6044-1024x684-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"159__MCOLES__MKC6044-1024x684-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"159__MCOLES__MKC6044-1024x684-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"159__MCOLES__MKC6044-1024x684-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"159__MCOLES__MKC6044-1024x684-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:42:\"159__MCOLES__MKC6044-1024x684-1024x675.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"159__MCOLES__MKC6044-1024x684-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"159__MCOLES__MKC6044-1024x684-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"159__MCOLES__MKC6044-1024x684-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:13:\"Meaghan Coles\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:104:\"Photos by www.facebook.com/meaghancoles.nowandthenphotography           www.nowandthenphotography.com.au\";s:17:\"created_timestamp\";s:10:\"1516798894\";s:9:\"copyright\";s:13:\"Meaghan Coles\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:9:{i:0;s:8:\"cocktail\";i:1;s:4:\"food\";i:2;s:5:\"event\";i:3;s:6:\"social\";i:4;s:11:\"photography\";i:5;s:8:\"adelaide\";i:6;s:7:\"wedding\";i:7;s:13:\"Meaghan Coles\";i:8;s:12:\"photographer\";}}}");
INSERT INTO `wp_postmeta` VALUES("2223", "1266", "_wp_attached_file", "2018/07/161__MCOLES__MKC6054-1024x684.jpg");
INSERT INTO `wp_postmeta` VALUES("2224", "1266", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:684;s:4:\"file\";s:41:\"2018/07/161__MCOLES__MKC6054-1024x684.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"161__MCOLES__MKC6054-1024x684-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"161__MCOLES__MKC6054-1024x684-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"161__MCOLES__MKC6054-1024x684-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"161__MCOLES__MKC6054-1024x684-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"161__MCOLES__MKC6054-1024x684-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:42:\"161__MCOLES__MKC6054-1024x684-1024x675.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"161__MCOLES__MKC6054-1024x684-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"161__MCOLES__MKC6054-1024x684-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"161__MCOLES__MKC6054-1024x684-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:13:\"Meaghan Coles\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:104:\"Photos by www.facebook.com/meaghancoles.nowandthenphotography           www.nowandthenphotography.com.au\";s:17:\"created_timestamp\";s:10:\"1516800468\";s:9:\"copyright\";s:13:\"Meaghan Coles\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:9:{i:0;s:8:\"cocktail\";i:1;s:4:\"food\";i:2;s:5:\"event\";i:3;s:6:\"social\";i:4;s:11:\"photography\";i:5;s:8:\"adelaide\";i:6;s:7:\"wedding\";i:7;s:13:\"Meaghan Coles\";i:8;s:12:\"photographer\";}}}");
INSERT INTO `wp_postmeta` VALUES("2225", "1267", "_wp_attached_file", "2018/07/165__MCOLES__MKC6070-1024x684.jpg");
INSERT INTO `wp_postmeta` VALUES("2226", "1267", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:684;s:4:\"file\";s:41:\"2018/07/165__MCOLES__MKC6070-1024x684.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"165__MCOLES__MKC6070-1024x684-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"165__MCOLES__MKC6070-1024x684-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"165__MCOLES__MKC6070-1024x684-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"165__MCOLES__MKC6070-1024x684-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"165__MCOLES__MKC6070-1024x684-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:42:\"165__MCOLES__MKC6070-1024x684-1024x675.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"165__MCOLES__MKC6070-1024x684-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"165__MCOLES__MKC6070-1024x684-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"165__MCOLES__MKC6070-1024x684-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:13:\"Meaghan Coles\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:104:\"Photos by www.facebook.com/meaghancoles.nowandthenphotography           www.nowandthenphotography.com.au\";s:17:\"created_timestamp\";s:10:\"1516800614\";s:9:\"copyright\";s:13:\"Meaghan Coles\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:8:\"0.003125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:9:{i:0;s:8:\"cocktail\";i:1;s:4:\"food\";i:2;s:5:\"event\";i:3;s:6:\"social\";i:4;s:11:\"photography\";i:5;s:8:\"adelaide\";i:6;s:7:\"wedding\";i:7;s:13:\"Meaghan Coles\";i:8;s:12:\"photographer\";}}}");
INSERT INTO `wp_postmeta` VALUES("2227", "1268", "_wp_attached_file", "2018/07/167__MCOLES__MKC6079-1024x684.jpg");
INSERT INTO `wp_postmeta` VALUES("2228", "1268", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:684;s:4:\"file\";s:41:\"2018/07/167__MCOLES__MKC6079-1024x684.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"167__MCOLES__MKC6079-1024x684-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"167__MCOLES__MKC6079-1024x684-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"167__MCOLES__MKC6079-1024x684-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"167__MCOLES__MKC6079-1024x684-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"167__MCOLES__MKC6079-1024x684-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:42:\"167__MCOLES__MKC6079-1024x684-1024x675.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"167__MCOLES__MKC6079-1024x684-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"167__MCOLES__MKC6079-1024x684-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"167__MCOLES__MKC6079-1024x684-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:13:\"Meaghan Coles\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:104:\"Photos by www.facebook.com/meaghancoles.nowandthenphotography           www.nowandthenphotography.com.au\";s:17:\"created_timestamp\";s:10:\"1516801479\";s:9:\"copyright\";s:13:\"Meaghan Coles\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:8:\"0.003125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:9:{i:0;s:8:\"cocktail\";i:1;s:4:\"food\";i:2;s:5:\"event\";i:3;s:6:\"social\";i:4;s:11:\"photography\";i:5;s:8:\"adelaide\";i:6;s:7:\"wedding\";i:7;s:13:\"Meaghan Coles\";i:8;s:12:\"photographer\";}}}");
INSERT INTO `wp_postmeta` VALUES("2229", "1269", "_wp_attached_file", "2018/07/169__MCOLES__MKC6097-1024x684.jpg");
INSERT INTO `wp_postmeta` VALUES("2230", "1269", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:684;s:4:\"file\";s:41:\"2018/07/169__MCOLES__MKC6097-1024x684.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"169__MCOLES__MKC6097-1024x684-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"169__MCOLES__MKC6097-1024x684-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"169__MCOLES__MKC6097-1024x684-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"169__MCOLES__MKC6097-1024x684-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"169__MCOLES__MKC6097-1024x684-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:42:\"169__MCOLES__MKC6097-1024x684-1024x675.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"169__MCOLES__MKC6097-1024x684-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"169__MCOLES__MKC6097-1024x684-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"169__MCOLES__MKC6097-1024x684-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:13:\"Meaghan Coles\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:104:\"Photos by www.facebook.com/meaghancoles.nowandthenphotography           www.nowandthenphotography.com.au\";s:17:\"created_timestamp\";s:10:\"1516801607\";s:9:\"copyright\";s:13:\"Meaghan Coles\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:8:\"0.003125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:9:{i:0;s:8:\"cocktail\";i:1;s:4:\"food\";i:2;s:5:\"event\";i:3;s:6:\"social\";i:4;s:11:\"photography\";i:5;s:8:\"adelaide\";i:6;s:7:\"wedding\";i:7;s:13:\"Meaghan Coles\";i:8;s:12:\"photographer\";}}}");
INSERT INTO `wp_postmeta` VALUES("2231", "1270", "_wp_attached_file", "2018/07/182__MCOLES__MKC6180-1024x684.jpg");
INSERT INTO `wp_postmeta` VALUES("2232", "1270", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:684;s:4:\"file\";s:41:\"2018/07/182__MCOLES__MKC6180-1024x684.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"182__MCOLES__MKC6180-1024x684-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"182__MCOLES__MKC6180-1024x684-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"182__MCOLES__MKC6180-1024x684-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"182__MCOLES__MKC6180-1024x684-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"182__MCOLES__MKC6180-1024x684-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:42:\"182__MCOLES__MKC6180-1024x684-1024x675.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"182__MCOLES__MKC6180-1024x684-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"182__MCOLES__MKC6180-1024x684-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"182__MCOLES__MKC6180-1024x684-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.5\";s:6:\"credit\";s:13:\"Meaghan Coles\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:104:\"Photos by www.facebook.com/meaghancoles.nowandthenphotography           www.nowandthenphotography.com.au\";s:17:\"created_timestamp\";s:10:\"1516802743\";s:9:\"copyright\";s:13:\"Meaghan Coles\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:9:{i:0;s:8:\"cocktail\";i:1;s:4:\"food\";i:2;s:5:\"event\";i:3;s:6:\"social\";i:4;s:11:\"photography\";i:5;s:8:\"adelaide\";i:6;s:7:\"wedding\";i:7;s:13:\"Meaghan Coles\";i:8;s:12:\"photographer\";}}}");
INSERT INTO `wp_postmeta` VALUES("2233", "1271", "_wp_attached_file", "2018/07/231__MCOLES__MKC6457-1024x684.jpg");
INSERT INTO `wp_postmeta` VALUES("2234", "1271", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:684;s:4:\"file\";s:41:\"2018/07/231__MCOLES__MKC6457-1024x684.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"231__MCOLES__MKC6457-1024x684-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"231__MCOLES__MKC6457-1024x684-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"231__MCOLES__MKC6457-1024x684-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"231__MCOLES__MKC6457-1024x684-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:41:\"231__MCOLES__MKC6457-1024x684-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:42:\"231__MCOLES__MKC6457-1024x684-1024x675.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:41:\"231__MCOLES__MKC6457-1024x684-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:41:\"231__MCOLES__MKC6457-1024x684-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:41:\"231__MCOLES__MKC6457-1024x684-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:13:\"Meaghan Coles\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:104:\"Photos by www.facebook.com/meaghancoles.nowandthenphotography           www.nowandthenphotography.com.au\";s:17:\"created_timestamp\";s:10:\"1516806590\";s:9:\"copyright\";s:13:\"Meaghan Coles\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:8:\"0.003125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:9:{i:0;s:8:\"cocktail\";i:1;s:4:\"food\";i:2;s:5:\"event\";i:3;s:6:\"social\";i:4;s:11:\"photography\";i:5;s:8:\"adelaide\";i:6;s:7:\"wedding\";i:7;s:13:\"Meaghan Coles\";i:8;s:12:\"photographer\";}}}");
INSERT INTO `wp_postmeta` VALUES("2235", "1275", "_wp_attached_file", "2018/07/2017-Haus-Studio-Apartments-Exterior-1-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("2236", "1275", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:58:\"2018/07/2017-Haus-Studio-Apartments-Exterior-1-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Exterior-1-800x533-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:58:\"2017-Haus-Studio-Apartments-Exterior-1-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Exterior-1-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Exterior-1-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Exterior-1-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Exterior-1-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Exterior-1-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS 80D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1506600266\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:8:\"0.003125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2237", "1276", "_wp_attached_file", "2018/07/2017-Haus-Studio-Apartments-Exterior-2-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("2238", "1276", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:58:\"2018/07/2017-Haus-Studio-Apartments-Exterior-2-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Exterior-2-800x533-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:58:\"2017-Haus-Studio-Apartments-Exterior-2-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Exterior-2-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Exterior-2-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Exterior-2-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Exterior-2-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Exterior-2-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS 80D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1506600306\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"29\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:8:\"0.003125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2239", "1277", "_wp_attached_file", "2018/07/2017-Haus-Studio-Apartments-Exterior-3-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("2240", "1277", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:58:\"2018/07/2017-Haus-Studio-Apartments-Exterior-3-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Exterior-3-800x533-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:58:\"2017-Haus-Studio-Apartments-Exterior-3-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Exterior-3-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Exterior-3-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Exterior-3-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Exterior-3-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Exterior-3-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS 80D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1506600465\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:8:\"0.003125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2241", "1278", "_wp_attached_file", "2018/07/2017-Haus-Studio-Apartments-Exterior-5-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("2242", "1278", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:58:\"2018/07/2017-Haus-Studio-Apartments-Exterior-5-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Exterior-5-800x533-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:58:\"2017-Haus-Studio-Apartments-Exterior-5-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Exterior-5-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Exterior-5-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Exterior-5-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Exterior-5-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Exterior-5-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS 80D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1506600798\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2243", "1279", "_wp_attached_file", "2018/07/2017-Haus-Studio-Apartments-Exterior-6-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("2244", "1279", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:58:\"2018/07/2017-Haus-Studio-Apartments-Exterior-6-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Exterior-6-800x533-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:58:\"2017-Haus-Studio-Apartments-Exterior-6-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Exterior-6-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Exterior-6-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Exterior-6-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Exterior-6-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Exterior-6-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS 80D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1506600904\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"23\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2245", "1280", "_wp_attached_file", "2018/07/2017-Haus-Studio-Apartments-Exterior-7-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("2246", "1280", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:58:\"2018/07/2017-Haus-Studio-Apartments-Exterior-7-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Exterior-7-800x533-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:58:\"2017-Haus-Studio-Apartments-Exterior-7-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Exterior-7-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Exterior-7-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Exterior-7-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Exterior-7-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Exterior-7-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS 80D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1506600961\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2247", "1281", "_wp_attached_file", "2018/07/2017-Haus-Studio-Apartments-Floor-Level-2-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("2248", "1281", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:61:\"2018/07/2017-Haus-Studio-Apartments-Floor-Level-2-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"2017-Haus-Studio-Apartments-Floor-Level-2-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"2017-Haus-Studio-Apartments-Floor-Level-2-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:61:\"2017-Haus-Studio-Apartments-Floor-Level-2-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:61:\"2017-Haus-Studio-Apartments-Floor-Level-2-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:61:\"2017-Haus-Studio-Apartments-Floor-Level-2-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:61:\"2017-Haus-Studio-Apartments-Floor-Level-2-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:61:\"2017-Haus-Studio-Apartments-Floor-Level-2-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"16\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS 80D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1505476663\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"12\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:3:\"0.8\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2249", "1282", "_wp_attached_file", "2018/07/2017-Haus-Studio-Apartments-Floor-Level-6-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("2250", "1282", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:61:\"2018/07/2017-Haus-Studio-Apartments-Floor-Level-6-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"2017-Haus-Studio-Apartments-Floor-Level-6-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"2017-Haus-Studio-Apartments-Floor-Level-6-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:61:\"2017-Haus-Studio-Apartments-Floor-Level-6-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:61:\"2017-Haus-Studio-Apartments-Floor-Level-6-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:61:\"2017-Haus-Studio-Apartments-Floor-Level-6-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:61:\"2017-Haus-Studio-Apartments-Floor-Level-6-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:61:\"2017-Haus-Studio-Apartments-Floor-Level-6-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"16\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS 80D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1505477314\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"10\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:3:\"0.8\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2251", "1283", "_wp_attached_file", "2018/07/2017-Haus-Studio-Apartments-Floor-Level-9-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("2252", "1283", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:61:\"2018/07/2017-Haus-Studio-Apartments-Floor-Level-9-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"2017-Haus-Studio-Apartments-Floor-Level-9-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"2017-Haus-Studio-Apartments-Floor-Level-9-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:61:\"2017-Haus-Studio-Apartments-Floor-Level-9-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:61:\"2017-Haus-Studio-Apartments-Floor-Level-9-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:61:\"2017-Haus-Studio-Apartments-Floor-Level-9-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:61:\"2017-Haus-Studio-Apartments-Floor-Level-9-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:61:\"2017-Haus-Studio-Apartments-Floor-Level-9-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"16\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS 80D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1505477494\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"10\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:1:\"4\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2253", "1284", "_wp_attached_file", "2018/07/2017-Haus-Studio-Apartments-Upstairs-2-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("2254", "1284", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:58:\"2018/07/2017-Haus-Studio-Apartments-Upstairs-2-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Upstairs-2-800x533-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:58:\"2017-Haus-Studio-Apartments-Upstairs-2-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Upstairs-2-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Upstairs-2-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Upstairs-2-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Upstairs-2-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Upstairs-2-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"16\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS 80D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1505477785\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"11\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:1:\"1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2255", "1285", "_wp_attached_file", "2018/07/2017-Haus-Studio-Apartments-Upstairs-4-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("2256", "1285", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:58:\"2018/07/2017-Haus-Studio-Apartments-Upstairs-4-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Upstairs-4-800x533-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:58:\"2017-Haus-Studio-Apartments-Upstairs-4-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Upstairs-4-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Upstairs-4-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Upstairs-4-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Upstairs-4-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Upstairs-4-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"16\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS 80D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1505478339\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"12\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:1:\"2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2257", "1286", "_wp_attached_file", "2018/07/2017-Haus-Studio-Apartments-Upstairs-7-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("2258", "1286", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:58:\"2018/07/2017-Haus-Studio-Apartments-Upstairs-7-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Upstairs-7-800x533-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:58:\"2017-Haus-Studio-Apartments-Upstairs-7-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Upstairs-7-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Upstairs-7-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Upstairs-7-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Upstairs-7-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:58:\"2017-Haus-Studio-Apartments-Upstairs-7-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"16\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS 80D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1505478552\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"13\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:1:\"2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2259", "1287", "_wp_attached_file", "2018/07/2018-Haus-Studio-Apartments-Exterior-9-800x534.jpg");
INSERT INTO `wp_postmeta` VALUES("2260", "1287", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:534;s:4:\"file\";s:58:\"2018/07/2018-Haus-Studio-Apartments-Exterior-9-800x534.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"2018-Haus-Studio-Apartments-Exterior-9-800x534-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:58:\"2018-Haus-Studio-Apartments-Exterior-9-800x534-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:58:\"2018-Haus-Studio-Apartments-Exterior-9-800x534-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:58:\"2018-Haus-Studio-Apartments-Exterior-9-800x534-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:58:\"2018-Haus-Studio-Apartments-Exterior-9-800x534-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:58:\"2018-Haus-Studio-Apartments-Exterior-9-800x534-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:58:\"2018-Haus-Studio-Apartments-Exterior-9-800x534-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:13:\"Meaghan Coles\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:104:\"Photos by www.facebook.com/meaghancoles.nowandthenphotography           www.nowandthenphotography.com.au\";s:17:\"created_timestamp\";s:10:\"1515432829\";s:9:\"copyright\";s:13:\"Meaghan Coles\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:9:{i:0;s:8:\"cocktail\";i:1;s:4:\"food\";i:2;s:5:\"event\";i:3;s:6:\"social\";i:4;s:11:\"photography\";i:5;s:8:\"adelaide\";i:6;s:7:\"wedding\";i:7;s:13:\"Meaghan Coles\";i:8;s:12:\"photographer\";}}}");
INSERT INTO `wp_postmeta` VALUES("2261", "1289", "_wp_attached_file", "2018/07/2018-The-Manna-Of-Hahndorf-Executive-Room-1-534x800.jpg");
INSERT INTO `wp_postmeta` VALUES("2262", "1289", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:534;s:6:\"height\";i:800;s:4:\"file\";s:63:\"2018/07/2018-The-Manna-Of-Hahndorf-Executive-Room-1-534x800.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"2018-The-Manna-Of-Hahndorf-Executive-Room-1-534x800-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"2018-The-Manna-Of-Hahndorf-Executive-Room-1-534x800-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:63:\"2018-The-Manna-Of-Hahndorf-Executive-Room-1-534x800-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:63:\"2018-The-Manna-Of-Hahndorf-Executive-Room-1-534x800-534x675.jpg\";s:5:\"width\";i:534;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:63:\"2018-The-Manna-Of-Hahndorf-Executive-Room-1-534x800-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:63:\"2018-The-Manna-Of-Hahndorf-Executive-Room-1-534x800-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:63:\"2018-The-Manna-Of-Hahndorf-Executive-Room-1-534x800-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:13:\"Meaghan Coles\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:104:\"Photos by www.facebook.com/meaghancoles.nowandthenphotography           www.nowandthenphotography.com.au\";s:17:\"created_timestamp\";s:10:\"1515403962\";s:9:\"copyright\";s:13:\"Meaghan Coles\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:9:{i:0;s:8:\"Adelaide\";i:1;s:13:\"Meaghan Coles\";i:2;s:8:\"cocktail\";i:3;s:5:\"event\";i:4;s:4:\"food\";i:5;s:12:\"photographer\";i:6;s:11:\"photography\";i:7;s:6:\"social\";i:8;s:7:\"wedding\";}}}");
INSERT INTO `wp_postmeta` VALUES("2263", "1290", "_wp_attached_file", "2018/07/2018-The-Manna-Of-Hahndorf-Executive-Room-4-800x534.jpg");
INSERT INTO `wp_postmeta` VALUES("2264", "1290", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:534;s:4:\"file\";s:63:\"2018/07/2018-The-Manna-Of-Hahndorf-Executive-Room-4-800x534.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"2018-The-Manna-Of-Hahndorf-Executive-Room-4-800x534-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"2018-The-Manna-Of-Hahndorf-Executive-Room-4-800x534-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:63:\"2018-The-Manna-Of-Hahndorf-Executive-Room-4-800x534-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:63:\"2018-The-Manna-Of-Hahndorf-Executive-Room-4-800x534-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:63:\"2018-The-Manna-Of-Hahndorf-Executive-Room-4-800x534-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:63:\"2018-The-Manna-Of-Hahndorf-Executive-Room-4-800x534-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:63:\"2018-The-Manna-Of-Hahndorf-Executive-Room-4-800x534-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:13:\"Meaghan Coles\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:104:\"Photos by www.facebook.com/meaghancoles.nowandthenphotography           www.nowandthenphotography.com.au\";s:17:\"created_timestamp\";s:10:\"1515404887\";s:9:\"copyright\";s:13:\"Meaghan Coles\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:9:{i:0;s:8:\"cocktail\";i:1;s:4:\"food\";i:2;s:5:\"event\";i:3;s:6:\"social\";i:4;s:11:\"photography\";i:5;s:8:\"adelaide\";i:6;s:7:\"wedding\";i:7;s:13:\"Meaghan Coles\";i:8;s:12:\"photographer\";}}}");
INSERT INTO `wp_postmeta` VALUES("2265", "1291", "_wp_attached_file", "2018/07/2018-The-Manna-Of-Hahndorf-Executive-Room-5-534x800.jpg");
INSERT INTO `wp_postmeta` VALUES("2266", "1291", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:534;s:6:\"height\";i:800;s:4:\"file\";s:63:\"2018/07/2018-The-Manna-Of-Hahndorf-Executive-Room-5-534x800.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"2018-The-Manna-Of-Hahndorf-Executive-Room-5-534x800-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"2018-The-Manna-Of-Hahndorf-Executive-Room-5-534x800-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:63:\"2018-The-Manna-Of-Hahndorf-Executive-Room-5-534x800-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:63:\"2018-The-Manna-Of-Hahndorf-Executive-Room-5-534x800-534x675.jpg\";s:5:\"width\";i:534;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:63:\"2018-The-Manna-Of-Hahndorf-Executive-Room-5-534x800-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:63:\"2018-The-Manna-Of-Hahndorf-Executive-Room-5-534x800-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:63:\"2018-The-Manna-Of-Hahndorf-Executive-Room-5-534x800-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:13:\"Meaghan Coles\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:104:\"Photos by www.facebook.com/meaghancoles.nowandthenphotography           www.nowandthenphotography.com.au\";s:17:\"created_timestamp\";s:10:\"1515405494\";s:9:\"copyright\";s:13:\"Meaghan Coles\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:8:\"0.003125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:9:{i:0;s:8:\"cocktail\";i:1;s:4:\"food\";i:2;s:5:\"event\";i:3;s:6:\"social\";i:4;s:11:\"photography\";i:5;s:8:\"adelaide\";i:6;s:7:\"wedding\";i:7;s:13:\"Meaghan Coles\";i:8;s:12:\"photographer\";}}}");
INSERT INTO `wp_postmeta` VALUES("2267", "1292", "_wp_attached_file", "2018/07/2018-The-Manna-Of-Hahndorf-Executive-Room-6-534x800.jpg");
INSERT INTO `wp_postmeta` VALUES("2268", "1292", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:534;s:6:\"height\";i:800;s:4:\"file\";s:63:\"2018/07/2018-The-Manna-Of-Hahndorf-Executive-Room-6-534x800.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"2018-The-Manna-Of-Hahndorf-Executive-Room-6-534x800-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"2018-The-Manna-Of-Hahndorf-Executive-Room-6-534x800-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:63:\"2018-The-Manna-Of-Hahndorf-Executive-Room-6-534x800-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:63:\"2018-The-Manna-Of-Hahndorf-Executive-Room-6-534x800-534x675.jpg\";s:5:\"width\";i:534;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:63:\"2018-The-Manna-Of-Hahndorf-Executive-Room-6-534x800-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:63:\"2018-The-Manna-Of-Hahndorf-Executive-Room-6-534x800-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:63:\"2018-The-Manna-Of-Hahndorf-Executive-Room-6-534x800-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:13:\"Meaghan Coles\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:104:\"Photos by www.facebook.com/meaghancoles.nowandthenphotography           www.nowandthenphotography.com.au\";s:17:\"created_timestamp\";s:10:\"1515405739\";s:9:\"copyright\";s:13:\"Meaghan Coles\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:9:{i:0;s:8:\"cocktail\";i:1;s:4:\"food\";i:2;s:5:\"event\";i:3;s:6:\"social\";i:4;s:11:\"photography\";i:5;s:8:\"adelaide\";i:6;s:7:\"wedding\";i:7;s:13:\"Meaghan Coles\";i:8;s:12:\"photographer\";}}}");
INSERT INTO `wp_postmeta` VALUES("2269", "1293", "_wp_attached_file", "2018/07/2018-The-Manna-Of-Hahndorf-Executive-Room-9-800x534.jpg");
INSERT INTO `wp_postmeta` VALUES("2270", "1293", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:534;s:4:\"file\";s:63:\"2018/07/2018-The-Manna-Of-Hahndorf-Executive-Room-9-800x534.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"2018-The-Manna-Of-Hahndorf-Executive-Room-9-800x534-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"2018-The-Manna-Of-Hahndorf-Executive-Room-9-800x534-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:63:\"2018-The-Manna-Of-Hahndorf-Executive-Room-9-800x534-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:63:\"2018-The-Manna-Of-Hahndorf-Executive-Room-9-800x534-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:63:\"2018-The-Manna-Of-Hahndorf-Executive-Room-9-800x534-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:63:\"2018-The-Manna-Of-Hahndorf-Executive-Room-9-800x534-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:63:\"2018-The-Manna-Of-Hahndorf-Executive-Room-9-800x534-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:13:\"Meaghan Coles\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:104:\"Photos by www.facebook.com/meaghancoles.nowandthenphotography           www.nowandthenphotography.com.au\";s:17:\"created_timestamp\";s:10:\"1515407617\";s:9:\"copyright\";s:13:\"Meaghan Coles\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:9:{i:0;s:8:\"cocktail\";i:1;s:4:\"food\";i:2;s:5:\"event\";i:3;s:6:\"social\";i:4;s:11:\"photography\";i:5;s:8:\"adelaide\";i:6;s:7:\"wedding\";i:7;s:13:\"Meaghan Coles\";i:8;s:12:\"photographer\";}}}");
INSERT INTO `wp_postmeta` VALUES("2271", "1294", "_wp_attached_file", "2018/07/2018-The-Manna-Of-Hahndorf-Executive-Room-13-800x534.jpg");
INSERT INTO `wp_postmeta` VALUES("2272", "1294", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:534;s:4:\"file\";s:64:\"2018/07/2018-The-Manna-Of-Hahndorf-Executive-Room-13-800x534.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"2018-The-Manna-Of-Hahndorf-Executive-Room-13-800x534-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:64:\"2018-The-Manna-Of-Hahndorf-Executive-Room-13-800x534-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"2018-The-Manna-Of-Hahndorf-Executive-Room-13-800x534-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:64:\"2018-The-Manna-Of-Hahndorf-Executive-Room-13-800x534-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:64:\"2018-The-Manna-Of-Hahndorf-Executive-Room-13-800x534-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:64:\"2018-The-Manna-Of-Hahndorf-Executive-Room-13-800x534-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:64:\"2018-The-Manna-Of-Hahndorf-Executive-Room-13-800x534-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"6.3\";s:6:\"credit\";s:13:\"Meaghan Coles\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:104:\"Photos by www.facebook.com/meaghancoles.nowandthenphotography           www.nowandthenphotography.com.au\";s:17:\"created_timestamp\";s:10:\"1515408698\";s:9:\"copyright\";s:13:\"Meaghan Coles\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:9:{i:0;s:8:\"cocktail\";i:1;s:4:\"food\";i:2;s:5:\"event\";i:3;s:6:\"social\";i:4;s:11:\"photography\";i:5;s:8:\"adelaide\";i:6;s:7:\"wedding\";i:7;s:13:\"Meaghan Coles\";i:8;s:12:\"photographer\";}}}");
INSERT INTO `wp_postmeta` VALUES("2273", "1295", "_wp_attached_file", "2018/07/2018-The-Manna-Of-Hahndorf-Indulgence-Spa-Suites-1-800x534.jpg");
INSERT INTO `wp_postmeta` VALUES("2274", "1295", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:534;s:4:\"file\";s:70:\"2018/07/2018-The-Manna-Of-Hahndorf-Indulgence-Spa-Suites-1-800x534.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:70:\"2018-The-Manna-Of-Hahndorf-Indulgence-Spa-Suites-1-800x534-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:70:\"2018-The-Manna-Of-Hahndorf-Indulgence-Spa-Suites-1-800x534-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:70:\"2018-The-Manna-Of-Hahndorf-Indulgence-Spa-Suites-1-800x534-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:70:\"2018-The-Manna-Of-Hahndorf-Indulgence-Spa-Suites-1-800x534-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:70:\"2018-The-Manna-Of-Hahndorf-Indulgence-Spa-Suites-1-800x534-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:70:\"2018-The-Manna-Of-Hahndorf-Indulgence-Spa-Suites-1-800x534-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:70:\"2018-The-Manna-Of-Hahndorf-Indulgence-Spa-Suites-1-800x534-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:13:\"Meaghan Coles\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:104:\"Photos by www.facebook.com/meaghancoles.nowandthenphotography           www.nowandthenphotography.com.au\";s:17:\"created_timestamp\";s:10:\"1515412201\";s:9:\"copyright\";s:13:\"Meaghan Coles\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:9:{i:0;s:8:\"cocktail\";i:1;s:4:\"food\";i:2;s:5:\"event\";i:3;s:6:\"social\";i:4;s:11:\"photography\";i:5;s:8:\"adelaide\";i:6;s:7:\"wedding\";i:7;s:13:\"Meaghan Coles\";i:8;s:12:\"photographer\";}}}");
INSERT INTO `wp_postmeta` VALUES("2275", "1296", "_wp_attached_file", "2018/07/2018-The-Manna-Of-Hahndorf-Indulgence-Spa-Suites-19-800x534.jpg");
INSERT INTO `wp_postmeta` VALUES("2276", "1296", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:534;s:4:\"file\";s:71:\"2018/07/2018-The-Manna-Of-Hahndorf-Indulgence-Spa-Suites-19-800x534.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:71:\"2018-The-Manna-Of-Hahndorf-Indulgence-Spa-Suites-19-800x534-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:71:\"2018-The-Manna-Of-Hahndorf-Indulgence-Spa-Suites-19-800x534-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:71:\"2018-The-Manna-Of-Hahndorf-Indulgence-Spa-Suites-19-800x534-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:71:\"2018-The-Manna-Of-Hahndorf-Indulgence-Spa-Suites-19-800x534-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:71:\"2018-The-Manna-Of-Hahndorf-Indulgence-Spa-Suites-19-800x534-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:71:\"2018-The-Manna-Of-Hahndorf-Indulgence-Spa-Suites-19-800x534-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:71:\"2018-The-Manna-Of-Hahndorf-Indulgence-Spa-Suites-19-800x534-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:13:\"Meaghan Coles\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:104:\"Photos by www.facebook.com/meaghancoles.nowandthenphotography           www.nowandthenphotography.com.au\";s:17:\"created_timestamp\";s:10:\"1515416435\";s:9:\"copyright\";s:13:\"Meaghan Coles\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:9:{i:0;s:8:\"cocktail\";i:1;s:4:\"food\";i:2;s:5:\"event\";i:3;s:6:\"social\";i:4;s:11:\"photography\";i:5;s:8:\"adelaide\";i:6;s:7:\"wedding\";i:7;s:13:\"Meaghan Coles\";i:8;s:12:\"photographer\";}}}");
INSERT INTO `wp_postmeta` VALUES("2277", "1297", "_wp_attached_file", "2018/07/Hahndorf-013-800x600.jpg");
INSERT INTO `wp_postmeta` VALUES("2278", "1297", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:32:\"2018/07/Hahndorf-013-800x600.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Hahndorf-013-800x600-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:\"Hahndorf-013-800x600-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:32:\"Hahndorf-013-800x600-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Hahndorf-013-800x600-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Hahndorf-013-800x600-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Hahndorf-013-800x600-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"Hahndorf-013-800x600-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:19:\"Canon PowerShot A75\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1182520931\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:7:\"5.40625\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:8:\"0.003125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2279", "1298", "_wp_attached_file", "2018/07/Hahndorf-Accommodation-Group-Reception-Office-1-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("2280", "1298", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:67:\"2018/07/Hahndorf-Accommodation-Group-Reception-Office-1-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:67:\"Hahndorf-Accommodation-Group-Reception-Office-1-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:67:\"Hahndorf-Accommodation-Group-Reception-Office-1-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:67:\"Hahndorf-Accommodation-Group-Reception-Office-1-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:67:\"Hahndorf-Accommodation-Group-Reception-Office-1-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:67:\"Hahndorf-Accommodation-Group-Reception-Office-1-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:67:\"Hahndorf-Accommodation-Group-Reception-Office-1-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:67:\"Hahndorf-Accommodation-Group-Reception-Office-1-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:13:\"Canon EOS 80D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1492107383\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2281", "1299", "_wp_attached_file", "2018/07/Hahndorf-Accommodation-Group-Reception-Office-2-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("2282", "1299", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:67:\"2018/07/Hahndorf-Accommodation-Group-Reception-Office-2-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:67:\"Hahndorf-Accommodation-Group-Reception-Office-2-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:67:\"Hahndorf-Accommodation-Group-Reception-Office-2-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:67:\"Hahndorf-Accommodation-Group-Reception-Office-2-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:67:\"Hahndorf-Accommodation-Group-Reception-Office-2-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:67:\"Hahndorf-Accommodation-Group-Reception-Office-2-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:67:\"Hahndorf-Accommodation-Group-Reception-Office-2-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:67:\"Hahndorf-Accommodation-Group-Reception-Office-2-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS 80D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1496421897\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2283", "1300", "_wp_attached_file", "2018/07/Hahndorf-Accommodation-Group-Reception-Office-3-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("2284", "1300", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:67:\"2018/07/Hahndorf-Accommodation-Group-Reception-Office-3-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:67:\"Hahndorf-Accommodation-Group-Reception-Office-3-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:67:\"Hahndorf-Accommodation-Group-Reception-Office-3-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:67:\"Hahndorf-Accommodation-Group-Reception-Office-3-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:67:\"Hahndorf-Accommodation-Group-Reception-Office-3-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:67:\"Hahndorf-Accommodation-Group-Reception-Office-3-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:67:\"Hahndorf-Accommodation-Group-Reception-Office-3-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:67:\"Hahndorf-Accommodation-Group-Reception-Office-3-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS 80D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1496421940\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:8:\"0.003125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2285", "1317", "_et_pb_row_layout", "4_4");
INSERT INTO `wp_postmeta` VALUES("2286", "1317", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("2287", "1330", "_wp_attached_file", "2018/07/123-Greenhill-Road-Old2.jpg");
INSERT INTO `wp_postmeta` VALUES("2288", "1330", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:782;s:6:\"height\";i:386;s:4:\"file\";s:35:\"2018/07/123-Greenhill-Road-Old2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"123-Greenhill-Road-Old2-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:\"123-Greenhill-Road-Old2-300x148.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:148;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"123-Greenhill-Road-Old2-768x379.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:379;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"123-Greenhill-Road-Old2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"123-Greenhill-Road-Old2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"123-Greenhill-Road-Old2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"123-Greenhill-Road-Old2-400x386.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:386;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:7:\"Jordana\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1532448769\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("2289", "1331", "_wp_attached_file", "2018/07/123-Greenhill-Road-Old.jpg");
INSERT INTO `wp_postmeta` VALUES("2290", "1331", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:933;s:6:\"height\";i:528;s:4:\"file\";s:34:\"2018/07/123-Greenhill-Road-Old.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"123-Greenhill-Road-Old-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"123-Greenhill-Road-Old-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"123-Greenhill-Road-Old-768x435.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:435;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"123-Greenhill-Road-Old-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"123-Greenhill-Road-Old-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"123-Greenhill-Road-Old-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"123-Greenhill-Road-Old-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:7:\"Jordana\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1532448695\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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("2291", "1332", "_wp_attached_file", "2018/07/123-Greenhill-Road.jpg");
INSERT INTO `wp_postmeta` VALUES("2292", "1332", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:782;s:6:\"height\";i:386;s:4:\"file\";s:30:\"2018/07/123-Greenhill-Road.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"123-Greenhill-Road-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:\"123-Greenhill-Road-300x148.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:148;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"123-Greenhill-Road-768x379.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:379;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"123-Greenhill-Road-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"123-Greenhill-Road-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"123-Greenhill-Road-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"123-Greenhill-Road-400x386.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:386;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:7:\"Jordana\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1532448769\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2293", "1347", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2294", "1347", "_edit_lock", "1532429328:1");
INSERT INTO `wp_postmeta` VALUES("2295", "1347", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("2296", "1347", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("2297", "1347", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("2298", "1347", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("2299", "1347", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("2300", "1347", "_et_builder_version", "VB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("2301", "1347", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("2302", "1347", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("2303", "1347", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("2304", "1347", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("2305", "1347", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("2306", "1347", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("2307", "1350", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("2308", "1350", "_menu_item_menu_item_parent", "203");
INSERT INTO `wp_postmeta` VALUES("2309", "1350", "_menu_item_object_id", "1347");
INSERT INTO `wp_postmeta` VALUES("2310", "1350", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("2311", "1350", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2312", "1350", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2313", "1350", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2314", "1350", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2316", "1352", "_wp_attached_file", "2018/07/IMG_2380-800x600.jpg");
INSERT INTO `wp_postmeta` VALUES("2317", "1352", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:28:\"2018/07/IMG_2380-800x600.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_2380-800x600-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_2380-800x600-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:28:\"IMG_2380-800x600-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_2380-800x600-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_2380-800x600-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_2380-800x600-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_2380-800x600-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:13:\"iPhone 7 Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1511174112\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.99\";s:3:\"iso\";s:2:\"20\";s:13:\"shutter_speed\";s:18:\"0.0019960079840319\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2318", "1353", "_wp_attached_file", "2018/07/IMG_4528-800x600.jpg");
INSERT INTO `wp_postmeta` VALUES("2319", "1353", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:28:\"2018/07/IMG_4528-800x600.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_4528-800x600-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_4528-800x600-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:28:\"IMG_4528-800x600-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_4528-800x600-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_4528-800x600-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_4528-800x600-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_4528-800x600-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:14:\"iPhone 6s Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1459937949\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:19:\"0.00072780203784571\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2320", "1354", "_wp_attached_file", "2018/07/IMG_7612-800x600.jpg");
INSERT INTO `wp_postmeta` VALUES("2321", "1354", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:28:\"2018/07/IMG_7612-800x600.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_7612-800x600-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_7612-800x600-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:28:\"IMG_7612-800x600-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_7612-800x600-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_7612-800x600-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_7612-800x600-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_7612-800x600-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 4S\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1459938208\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.28\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:19:\"0.00088809946714032\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2322", "1355", "_wp_attached_file", "2018/07/Cellars-800x600.jpg");
INSERT INTO `wp_postmeta` VALUES("2323", "1355", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:27:\"2018/07/Cellars-800x600.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Cellars-800x600-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:\"Cellars-800x600-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:27:\"Cellars-800x600-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"Cellars-800x600-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"Cellars-800x600-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"Cellars-800x600-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:27:\"Cellars-800x600-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:14:\"iPhone 6s Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1459938130\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:4:\"0.25\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2324", "1356", "_wp_attached_file", "2018/07/Nairne-Supermarket-Perspective-3-800x347.jpg");
INSERT INTO `wp_postmeta` VALUES("2325", "1356", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:347;s:4:\"file\";s:52:\"2018/07/Nairne-Supermarket-Perspective-3-800x347.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"Nairne-Supermarket-Perspective-3-800x347-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:52:\"Nairne-Supermarket-Perspective-3-800x347-300x130.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:130;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:52:\"Nairne-Supermarket-Perspective-3-800x347-768x333.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:52:\"Nairne-Supermarket-Perspective-3-800x347-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:52:\"Nairne-Supermarket-Perspective-3-800x347-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:52:\"Nairne-Supermarket-Perspective-3-800x347-510x347.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:347;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:52:\"Nairne-Supermarket-Perspective-3-800x347-400x347.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:347;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1510915496\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2326", "1357", "_wp_attached_file", "2018/07/IMG_4542-800x178.jpg");
INSERT INTO `wp_postmeta` VALUES("2327", "1357", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:178;s:4:\"file\";s:28:\"2018/07/IMG_4542-800x178.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_4542-800x178-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:\"IMG_4542-800x178-300x67.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"IMG_4542-800x178-768x171.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_4542-800x178-400x178.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:178;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_4542-800x178-400x178.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:178;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_4542-800x178-510x178.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:178;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_4542-800x178-400x178.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:178;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:14:\"iPhone 6s Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1459938878\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"40\";s:13:\"shutter_speed\";s:19:\"0.00098814229249012\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2328", "1347", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("2329", "1347", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("2330", "1347", "_et_pb_ab_subjects", "");
INSERT INTO `wp_postmeta` VALUES("2331", "1347", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"1347\" /]");
INSERT INTO `wp_postmeta` VALUES("2332", "1362", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2333", "1362", "_edit_lock", "1532429943:1");
INSERT INTO `wp_postmeta` VALUES("2334", "1362", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("2335", "1362", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("2336", "1362", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("2337", "1362", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("2338", "1362", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("2339", "1362", "_et_builder_version", "VB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("2340", "1362", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("2341", "1362", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("2342", "1362", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("2343", "1362", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("2344", "1362", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("2345", "1364", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("2346", "1364", "_menu_item_menu_item_parent", "203");
INSERT INTO `wp_postmeta` VALUES("2347", "1364", "_menu_item_object_id", "1362");
INSERT INTO `wp_postmeta` VALUES("2348", "1364", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("2349", "1364", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2350", "1364", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2351", "1364", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2352", "1364", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2354", "1362", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("2355", "1366", "_wp_attached_file", "2018/07/BIs-New-Office-3-628x800.jpg");
INSERT INTO `wp_postmeta` VALUES("2356", "1366", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:628;s:6:\"height\";i:800;s:4:\"file\";s:36:\"2018/07/BIs-New-Office-3-628x800.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"BIs-New-Office-3-628x800-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:\"BIs-New-Office-3-628x800-236x300.jpg\";s:5:\"width\";i:236;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"BIs-New-Office-3-628x800-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"BIs-New-Office-3-628x800-628x675.jpg\";s:5:\"width\";i:628;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"BIs-New-Office-3-628x800-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"BIs-New-Office-3-628x800-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"BIs-New-Office-3-628x800-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1504531775\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2357", "1367", "_wp_attached_file", "2018/07/BIs-New-Office-REAR-800x451.jpg");
INSERT INTO `wp_postmeta` VALUES("2358", "1367", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:451;s:4:\"file\";s:39:\"2018/07/BIs-New-Office-REAR-800x451.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"BIs-New-Office-REAR-800x451-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"BIs-New-Office-REAR-800x451-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"BIs-New-Office-REAR-800x451-768x433.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:433;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"BIs-New-Office-REAR-800x451-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"BIs-New-Office-REAR-800x451-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"BIs-New-Office-REAR-800x451-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"BIs-New-Office-REAR-800x451-400x451.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1509373851\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2359", "1362", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("2360", "1362", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("2361", "1362", "_et_pb_ab_subjects", "");
INSERT INTO `wp_postmeta` VALUES("2362", "1362", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"1362\" /]");
INSERT INTO `wp_postmeta` VALUES("2363", "1378", "_wp_attached_file", "2018/07/Nairne.jpg");
INSERT INTO `wp_postmeta` VALUES("2364", "1378", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:4242;s:6:\"height\";i:2828;s:4:\"file\";s:18:\"2018/07/Nairne.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"Nairne-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"Nairne-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"Nairne-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"Nairne-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"Nairne-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:19:\"Nairne-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"Nairne-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"Nairne-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:19:\"Nairne-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"Nairne-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:20:\"Nairne-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:29:\"www.facebook.com/kensohstudio\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:29:\"www.facebook.com/kensohstudio\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2365", "1381", "_wp_attached_file", "2018/07/Beyond-Ink-Office.jpg");
INSERT INTO `wp_postmeta` VALUES("2366", "1381", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:4242;s:6:\"height\";i:2828;s:4:\"file\";s:29:\"2018/07/Beyond-Ink-Office.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Beyond-Ink-Office-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Beyond-Ink-Office-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"Beyond-Ink-Office-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Beyond-Ink-Office-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:29:\"Beyond-Ink-Office-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:30:\"Beyond-Ink-Office-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:29:\"Beyond-Ink-Office-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:29:\"Beyond-Ink-Office-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:30:\"Beyond-Ink-Office-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:29:\"Beyond-Ink-Office-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:31:\"Beyond-Ink-Office-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:29:\"www.facebook.com/kensohstudio\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:29:\"www.facebook.com/kensohstudio\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2367", "204", "_et_pb_ab_subjects", "");
INSERT INTO `wp_postmeta` VALUES("2368", "1366", "_edit_lock", "1532432666:1");
INSERT INTO `wp_postmeta` VALUES("2369", "1394", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("2370", "1394", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("2371", "1394", "_menu_item_object_id", "474");
INSERT INTO `wp_postmeta` VALUES("2372", "1394", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("2373", "1394", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2374", "1394", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2375", "1394", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2376", "1394", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("2377", "1394", "_menu_item_orphaned", "1532433001");
INSERT INTO `wp_postmeta` VALUES("2378", "1395", "_wp_attached_file", "2018/07/Before-1-800x600.jpg");
INSERT INTO `wp_postmeta` VALUES("2379", "1395", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:28:\"2018/07/Before-1-800x600.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Before-1-800x600-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Before-1-800x600-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:28:\"Before-1-800x600-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"Before-1-800x600-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"Before-1-800x600-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"Before-1-800x600-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"Before-1-800x600-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"COOLPIX L11\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1304093862\";s:9:\"copyright\";s:14:\"Copyright 2006\";s:12:\"focal_length\";s:3:\"6.2\";s:3:\"iso\";s:2:\"64\";s:13:\"shutter_speed\";s:18:\"0.0043610989969472\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2380", "1396", "_wp_attached_file", "2018/07/IMG_0627-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("2381", "1396", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:28:\"2018/07/IMG_0627-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_0627-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_0627-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"IMG_0627-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_0627-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_0627-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_0627-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_0627-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1334849471\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"29\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2382", "1397", "_wp_attached_file", "2018/07/Stairs-1-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("2383", "1397", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:28:\"2018/07/Stairs-1-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Stairs-1-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Stairs-1-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"Stairs-1-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"Stairs-1-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"Stairs-1-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"Stairs-1-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"Stairs-1-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1333560551\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"48\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2384", "1398", "_wp_attached_file", "2018/07/IMG_0633-800x533.jpg");
INSERT INTO `wp_postmeta` VALUES("2385", "1398", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:28:\"2018/07/IMG_0633-800x533.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IMG_0633-800x533-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_0633-800x533-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"IMG_0633-800x533-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"IMG_0633-800x533-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"IMG_0633-800x533-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"IMG_0633-800x533-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"IMG_0633-800x533-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1100D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1334849795\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"43\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2388", "6", "_et_pb_ab_subjects", "");
INSERT INTO `wp_postmeta` VALUES("2390", "211", "_et_pb_ab_subjects", "");
INSERT INTO `wp_postmeta` VALUES("2391", "120", "_et_pb_ab_subjects", "");
INSERT INTO `wp_postmeta` VALUES("2394", "1444", "_wp_attached_file", "2018/07/Beyond-Ink-Logo-Rectangle.jpg");
INSERT INTO `wp_postmeta` VALUES("2395", "1444", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1723;s:6:\"height\";i:567;s:4:\"file\";s:37:\"2018/07/Beyond-Ink-Logo-Rectangle.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Beyond-Ink-Logo-Rectangle-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:\"Beyond-Ink-Logo-Rectangle-300x99.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:99;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"Beyond-Ink-Logo-Rectangle-768x253.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:253;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"Beyond-Ink-Logo-Rectangle-1024x337.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:337;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:37:\"Beyond-Ink-Logo-Rectangle-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:38:\"Beyond-Ink-Logo-Rectangle-1080x567.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:567;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:37:\"Beyond-Ink-Logo-Rectangle-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:37:\"Beyond-Ink-Logo-Rectangle-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:38:\"Beyond-Ink-Logo-Rectangle-1080x355.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:37:\"Beyond-Ink-Logo-Rectangle-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("2400", "1450", "_edit_lock", "1532598886:1");
INSERT INTO `wp_postmeta` VALUES("2401", "1450", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2402", "1451", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("2403", "1450", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("2404", "1450", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("2405", "1450", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("2406", "1450", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("2407", "1450", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("2408", "1450", "_et_builder_version", "VB|Divi|3.0.106");
INSERT INTO `wp_postmeta` VALUES("2409", "1450", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("2410", "1450", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("2411", "1450", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("2412", "1450", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("2413", "1450", "_yoast_wpseo_content_score", "60");
INSERT INTO `wp_postmeta` VALUES("2414", "1450", "et_enqueued_post_fonts", "a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-muli\";s:103:\"Muli:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}}");
INSERT INTO `wp_postmeta` VALUES("2415", "1450", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("2416", "1450", "_et_pb_use_ab_testing", "off");
INSERT INTO `wp_postmeta` VALUES("2417", "1450", "_et_pb_ab_subjects", "");
INSERT INTO `wp_postmeta` VALUES("2418", "1450", "_et_pb_ab_current_shortcode", "[et_pb_split_track id=\"1450\" /]");
INSERT INTO `wp_postmeta` VALUES("2419", "1459", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("2420", "1459", "_menu_item_menu_item_parent", "203");
INSERT INTO `wp_postmeta` VALUES("2421", "1459", "_menu_item_object_id", "1450");
INSERT INTO `wp_postmeta` VALUES("2422", "1459", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("2423", "1459", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("2424", "1459", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("2425", "1459", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("2426", "1459", "_menu_item_url", "");

/* INSERT TABLE DATA: wp_posts */
INSERT INTO `wp_posts` VALUES("404", "1", "2018-06-06 08:19:23", "2018-06-06 08:19:23", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" background_position_2=\"center\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"#top\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"21px||0|\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" contenteditable=\"true\" data-shortcode-id=\"1.0.0.0-1515376821367\">Insightful design and exemplary construction</h2>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Interior Design<br /> • Landcape Design</p>\n<p>A boutique residential &amp; commercial design &amp; construction company.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Commercial<br /> • Residential</p>\n<p>We\'re passionate about innovation to create the best possible space.</p>\n<p>&nbsp;</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Town Planning<br /> • Cost Control</p>\n<p>We\'re committed to quality and value for money, delivering on time and on budget.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Bridgewater-House.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Work\" button_url=\"#top\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]Lorem ipsum dolor sit amet, consectetur adipiscing 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.\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"]<p><em><span style=\"color: #ffffff;\">We promise not to spam!</span></em></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-06-06 08:19:23", "2018-06-06 08:19:23", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("146", "1", "2018-05-16 23:23:50", "2018-05-16 23:23:50", "", "Murray Bridge Racing Club", "", "inherit", "open", "closed", "", "north-east-corner-dulux-gunmetal-kinetic-sm", "", "", "2018-05-16 23:24:12", "2018-05-16 23:24:12", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/North-East-Corner-Dulux-Gunmetal-Kinetic-Sm.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("7", "1", "2018-04-26 23:02:51", "2018-04-26 23:02:51", "", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-04-26 23:02:51", "2018-04-26 23:02:51", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("6", "1", "2018-04-26 23:07:35", "2018-04-26 23:07:35", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" parallax=\"on\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" parallax_1=\"on\" parallax_2=\"on\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\" parallax=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"on\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/contact/\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]We\'re a boutique design and construction company - big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"on\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|14px|0px\"][et_pb_row custom_padding=\"46px|0px|72px|0px\" custom_margin=\"-45px|||\" _builder_version=\"3.0.106\" custom_margin_phone=\"-25px|||\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"25px|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2><strong>Commercial Projects. New Homes. Additions.</strong></h2>\r\n<h3><span style=\"color: #000000;\"><strong>Insightful design. Exemplary construction.</strong></span></h3>\r\nHaving a talented team of designers and project managers enables us to adopt an holistic approach when creating and delivering a comprehensive commercial and residential package that meets and exceed your needs.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#535353\" admin_label=\"CTA Section\" _builder_version=\"3.0.106\" custom_padding=\"21px||0|\"][et_pb_row custom_padding=\"55px||25px|\" admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<span style=\"color: #ffffff;\">• Interior Design</span>\r\n<span style=\"color: #ffffff;\"> • Landcape Design</span>\r\n\r\n<span style=\"color: #ffffff;\">We\'re a commercial and residential design and construction company.</span>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<span style=\"color: #ffffff;\">• Commercial</span>\r\n<span style=\"color: #ffffff;\"> • Residential</span>\r\n\r\n<span style=\"color: #ffffff;\">We\'re passionate about innovation to create the best possible space.</span>\r\n\r\n<span style=\"color: #ffffff;\"> </span>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<span style=\"color: #ffffff;\">• Town Planning</span>\r\n<span style=\"color: #ffffff;\"> • Cost Control</span>\r\n\r\n<span style=\"color: #ffffff;\">We\'re committed to quality and value for money, delivering on time and on budget.</span>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"41px||0|\"][et_pb_row custom_padding=\"27px|0px|62px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Barker-Plaza-Entrance-800x534.jpg\" show_in_lightbox=\"on\" align=\"center\" _builder_version=\"3.0.106\" custom_margin=\"||25px|\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-13-of-47-800x535.jpg\" show_in_lightbox=\"on\" align=\"center\" _builder_version=\"3.0.106\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/169__MCOLES__MKC6097-1024x684.jpg\" show_in_lightbox=\"on\" align=\"center\" _builder_version=\"3.0.106\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#535353\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0|0px|23px|0px\" custom_margin=\"||50px|\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/The-Haus-Extension-1-23-08-2017-800x601.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"50|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]<p><span style=\"color: #ffffff;\">Our commercial portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, the new Wolf Blass Gallery and Museum, the redesign of the Mount Barker Racing Club at Gifford Hill, and more.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_margin=\"-50px||-50px|\" custom_padding=\"0|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]Sign up to keep up to date with what\'s happening at Beyond Ink.\r[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"] \r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "publish", "closed", "closed", "", "home", "", "", "2018-07-24 12:09:49", "2018-07-24 12:09:49", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=6", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("56", "1", "2018-04-27 01:28:32", "2018-04-27 01:28:32", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#ededed\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"CTA Row\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/North-East-Corner-Dulux-Gunmetal-Kinetic.jpg\" padding_top_1=\"18%\" padding_bottom_1=\"18%\" padding_left_1=\"10%\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\"][et_pb_cta admin_label=\"Heading, Subheading &amp; CTA Button\" title=\"Design Innovation. Building Excellence.\" button_url=\"#top\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" animation_style=\"fade\" locked=\"off\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r\n\r\n[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"100px||100px|\" prev_background_color=\"#ededed\" next_background_color=\"#1a1a1a\"][et_pb_row admin_label=\"CTA Row\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]\r\n<h2 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" contenteditable=\"true\" data-shortcode-id=\"1.0.0.0-1515376821367\">Insightful design and exemplary construction</h2>\r\nOur team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering the comprehensive commercial and residential package.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Process\" title=\"Design\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\" use_icon=\"on\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" font_icon=\"%%259%%\"]\r\n\r\n• Interior Design\r\n• Landcape Design\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Process\" title=\"Architecture\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\" use_icon=\"on\" icon_color=\"#ffffff\" use_circle=\"on\" font_icon=\"%%270%%\"]\r\n\r\n• Commercial\r\n• Residential\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Process\" title=\"Project Management\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\" use_icon=\"on\" icon_color=\"#ffffff\" use_circle=\"on\" font_icon=\"%%210%%\"]\r\n\r\n• Town Planning\r\n• Cost Control\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Works CTA Section\" background_color=\"#1a1a1a\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\" prev_background_color=\"#ffffff\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"CTA Row\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" padding_top_2=\"100px\" padding_right_2=\"60px\" padding_bottom_2=\"100px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/section-bg-5.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.93\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_cta title=\"Our Work\" button_url=\"#top\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing 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.\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/section-bg-2.jpg\" background_position=\"bottom_center\" custom_padding=\"8%|0px|8%|0px\" prev_background_color=\"#1a1a1a\"][et_pb_row admin_label=\"Subscription Row\" custom_padding=\"|||\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Weekly Newsletter.\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" use_focus_border_color=\"off\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r\n\r\n[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]\r\n\r\nWe won\'t spam!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-04-27 01:28:32", "2018-04-27 01:28:32", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14", "1", "2018-04-26 23:07:35", "2018-04-26 23:07:35", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#ededed\" _builder_version=\"3.0.93\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"CTA Row\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/bedroom.jpg\" padding_top_1=\"18%\" padding_bottom_1=\"18%\" padding_left_1=\"10%\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\"][et_pb_cta admin_label=\"Heading, Subheading &amp; CTA Button\" title=\"Elegance In Interior Design.\" button_url=\"#top\" button_text=\"Know More\" use_background_color=\"off\" background_layout=\"light\" _builder_version=\"3.0.93\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" animation_style=\"fade\" locked=\"off\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est. [/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider height=\"300px\" _builder_version=\"3.0.93\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"100px||100px|\" prev_background_color=\"#ededed\" next_background_color=\"#1a1a1a\"][et_pb_row admin_label=\"CTA Row\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|||\" custom_margin=\"|||\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]\r\n<h2 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" contenteditable=\"true\" data-shortcode-id=\"1.0.0.0-1515376821367\">Everything Customized to YOU</h2>\r\nMauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Mauris non tempor quam, et lacinia sapien.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Process\" title=\"Research\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/number-icons_1.png\" image_max_width=\"38px\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Process\" title=\"Design\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/number-icons_2.png\" image_max_width=\"38px\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Process\" title=\"Build\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/number-icons_3.png\" image_max_width=\"38px\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Works CTA Section\" background_color=\"#1a1a1a\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\" prev_background_color=\"#ffffff\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"CTA Row\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" padding_top_2=\"100px\" padding_right_2=\"60px\" padding_bottom_2=\"100px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/section-bg-5.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.93\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_cta title=\"Our Work\" button_url=\"#top\" button_text=\"View Portfolio\" use_background_color=\"off\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\"]\r\n\r\nMauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae lorem ipsum esttiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero.\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"100px|0px|100px|0px\" prev_background_color=\"#1a1a1a\" next_background_color=\"#000000\"][et_pb_row admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]\r\n<h2>From The Blog</h2>\r\nMauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Blog Posts Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" show_pagination=\"off\" offset_number=\"0\" _builder_version=\"3.0.93\" header_level=\"h4\" header_font=\"Muli|600|||||||\" header_font_size=\"18px\" header_line_height=\"1.4em\" body_font=\"Muli||||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" meta_font=\"Muli|600|||||||\" meta_font_size=\"14px\" meta_text_color=\"rgba(0,0,0,0.3)\" border_width_all=\"0px\" custom_margin=\"|||\" custom_padding=\"|||\" /][et_pb_button button_text=\"Read More\" button_alignment=\"center\" _builder_version=\"3.0.93\" custom_margin=\"|||\" custom_margin_tablet=\"30px|||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" locked=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.93\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/section-bg-2.jpg\" background_position=\"bottom_center\" custom_padding=\"8%|0px|8%|0px\" prev_background_color=\"#000000\"][et_pb_row admin_label=\"Subscription Row\" custom_padding=\"|||\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Weekly Newsletter.\" use_background_color=\"off\" background_layout=\"light\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#1a1a1a\" button_border_color_hover=\"#1a1a1a\" button_border_radius_hover=\"0px\" use_focus_border_color=\"off\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. [/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]\r\n\r\nWe won\'t spam!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-04-26 23:07:35", "2018-04-26 23:07:35", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15", "1", "2018-04-26 23:22:42", "2018-04-26 23:22:42", "", "Beyond Ink Logo", "", "inherit", "open", "closed", "", "beyond-ink-logo", "", "", "2018-04-26 23:22:48", "2018-04-26 23:22:48", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Beyond-Ink-Logo.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("16", "1", "2018-04-26 23:23:25", "2018-04-26 23:23:25", "#et-secondary-nav li ul, #top-header {background-color: #9dd00f;}\r\n#top-menu .current-menu-item a::before,\r\n#top-menu .current_page_item a::before {\r\n content: \"\";\r\n position: absolute;\r\n z-index: 2;\r\n left: 0;\r\n right: 0;\r\n}\r\n#top-menu li a:before {\r\n content: \"\";\r\n position: absolute;\r\n z-index: -2;\r\n left: 0;\r\n right: 100%;\r\n bottom: 50%;\r\n background: #9dd00f; /*** COLOR OF THE LINE ***/\r\n height: 1px; /*** THICKNESS OF THE LINE ***/\r\n -webkit-transition-property: right;\r\n transition-property: right;\r\n -webkit-transition-duration: 0.3s;\r\n transition-duration: 0.3s;\r\n -webkit-transition-timing-function: ease-out;\r\n transition-timing-function: ease-out;\r\n}\r\n#top-menu li a:hover {\r\n opacity: 1 !important;\r\n}\r\n#top-menu li a:hover:before {\r\n right: 0;\r\n}\r\n#top-menu li li a:before {\r\n bottom: 10%;\r\n}\r\n.centerGallery .et_pb_gallery_item:first-child {\r\nmargin-left: 25%;\r\n}", "Divi-child", "", "publish", "closed", "closed", "", "divi-child", "", "", "2018-07-25 08:38:03", "2018-07-25 08:38:03", "", "0", "https://beyondink.alluredigitalmarketing.com.au/divi-child/", "0", "custom_css", "", "0");
INSERT INTO `wp_posts` VALUES("17", "1", "2018-04-26 23:23:25", "2018-04-26 23:23:25", "", "Divi-child", "", "inherit", "closed", "closed", "", "16-revision-v1", "", "", "2018-04-26 23:23:25", "2018-04-26 23:23:25", "", "16", "https://beyondink.alluredigitalmarketing.com.au/16-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("18", "1", "2018-04-26 23:27:52", "2018-04-26 23:27:52", "", "Beyond Ink Favicon", "", "inherit", "open", "closed", "", "favicon", "", "", "2018-04-26 23:28:04", "2018-04-26 23:28:04", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Favicon.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("19", "1", "2018-04-26 23:30:12", "2018-04-26 23:30:12", " ", "", "", "publish", "closed", "closed", "", "19", "", "", "2018-07-30 02:30:40", "2018-07-30 02:30:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?p=19", "1", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("433", "1", "2018-06-10 09:37:41", "2018-06-10 09:37:41", "", "Aldgate Renovation", "", "inherit", "open", "closed", "", "4-800x533", "", "", "2018-06-10 09:39:52", "2018-06-10 09:39:52", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/4-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("434", "1", "2018-06-10 09:37:44", "2018-06-10 09:37:44", "", "Aldgate Renovation", "", "inherit", "open", "closed", "", "7-800x533", "", "", "2018-06-10 09:39:49", "2018-06-10 09:39:49", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/7-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("429", "1", "2018-06-10 09:34:22", "2018-06-10 09:34:22", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Exterior-4-of-6-800x535.jpg\" custom_padding=\"10%|0px|123px|0px\" next_background_color=\"#000000\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"27px|0px|11px|0px\" _builder_version=\"3.0.92\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Residential Projects</h1>\r\nMauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\" prev_background_color=\"#000000\"][et_pb_row admin_label=\"Blog Posts Row\" custom_padding=\"92px|0px|27px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"156,158,159,163,161,160,170,169,162,164,165,166\" gallery_captions=\",,,,,,,,,,,\" posts_number=\"14\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.49)\" box_shadow_style_image=\"preset1\" box_shadow_blur_image=\"23px\" _builder_version=\"3.0.106\" title_font=\"||||||||\" title_text_color=\"#000000\" pagination_font=\"||||||||\" custom_margin=\"|||\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Aldgate Renovation", "", "inherit", "closed", "closed", "", "426-revision-v1", "", "", "2018-06-10 09:34:22", "2018-06-10 09:34:22", "", "426", "https://beyondink.alluredigitalmarketing.com.au/426-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("409", "1", "2018-06-10 08:52:35", "2018-06-10 08:52:35", "", "The Lane Winery", "", "inherit", "open", "closed", "", "img_3605-800x600-2", "", "", "2018-06-10 08:52:51", "2018-06-10 08:52:51", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_3605-800x600.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("42", "1", "2018-04-27 00:16:19", "2018-04-27 00:16:19", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.93\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/bedroom.jpg\" padding_top_1=\"18%\" padding_bottom_1=\"18%\" padding_left_1=\"10%\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"18%\" padding_left=\"10%\" padding_top=\"18%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"#top\" button_text=\"Our Work\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" animation_style=\"fade\" locked=\"off\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est. [/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/bedroom.jpg\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"100px||100px|\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|||\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" contenteditable=\"true\" data-shortcode-id=\"1.0.0.0-1515376821367\">Everything Customized to YOU</h2>\r\nMauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Mauris non tempor quam, et lacinia sapien.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Research\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/number-icons_1.png\" image_max_width=\"38px\" admin_label=\"Process\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/number-icons_2.png\" image_max_width=\"38px\" admin_label=\"Process\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Build\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/number-icons_3.png\" image_max_width=\"38px\" admin_label=\"Process\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" padding_top_2=\"100px\" padding_right_2=\"60px\" padding_bottom_2=\"100px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/section-bg-5.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.93\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_bottom=\"100px\" padding_right=\"60px\" padding_top=\"100px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Work\" button_url=\"#top\" button_text=\"View Portfolio\" use_background_color=\"off\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\"]Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae lorem ipsum esttiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero.\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>From The Blog</h2>\r\nMauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Blog Posts Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" show_pagination=\"off\" offset_number=\"0\" _builder_version=\"3.0.93\" header_level=\"h4\" header_font=\"Muli|600|||||||\" header_font_size=\"18px\" header_line_height=\"1.4em\" body_font=\"Muli||||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" meta_font=\"Muli|600|||||||\" meta_font_size=\"14px\" meta_text_color=\"rgba(0,0,0,0.3)\" border_width_all=\"0px\" custom_margin=\"|||\" custom_padding=\"|||\"][/et_pb_blog][et_pb_button button_text=\"Read More\" button_alignment=\"center\" _builder_version=\"3.0.93\" custom_margin=\"|||\" custom_margin_tablet=\"30px|||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" locked=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/section-bg-2.jpg\" background_position=\"bottom_center\" custom_padding=\"8%|0px|8%|0px\"][et_pb_row custom_padding=\"|||\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Weekly Newsletter.\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" use_focus_border_color=\"off\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. [/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]We won\'t spam!\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-04-27 00:16:19", "2018-04-27 00:16:19", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("53", "1", "2018-04-27 01:18:46", "2018-04-27 01:18:46", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.93\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/bedroom.jpg\" padding_top_1=\"18%\" padding_bottom_1=\"18%\" padding_left_1=\"10%\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"18%\" padding_left=\"10%\" padding_top=\"18%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"#top\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" animation_style=\"fade\" locked=\"off\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/bedroom.jpg\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"100px||100px|\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" contenteditable=\"true\" data-shortcode-id=\"1.0.0.0-1515376821367\">Insightful design and exemplary construction</h2>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering the comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\" use_icon=\"on\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" font_icon=\"%%259%%\"]<p>• Interior Design<br />• Landcape Design</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\" use_icon=\"on\" icon_color=\"#ffffff\" use_circle=\"on\" font_icon=\"%%270%%\"]<p>• Commercial<br />• Residential</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\" use_icon=\"on\" icon_color=\"#ffffff\" use_circle=\"on\" font_icon=\"%%210%%\"]<p>• Town Planning<br />• Cost Control</p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" padding_top_2=\"100px\" padding_right_2=\"60px\" padding_bottom_2=\"100px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/section-bg-5.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.93\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_bottom=\"100px\" padding_right=\"60px\" padding_top=\"100px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Work\" button_url=\"#top\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing 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.</p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/section-bg-2.jpg\" background_position=\"bottom_center\" custom_padding=\"8%|0px|8%|0px\"][et_pb_row custom_padding=\"|||\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Weekly Newsletter.\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" use_focus_border_color=\"off\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. </p>[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]We won\'t spam!\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-04-27 01:18:46", "2018-04-27 01:18:46", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("49", "1", "2018-04-27 01:13:07", "2018-04-27 01:13:07", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.93\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/bedroom.jpg\" padding_top_1=\"18%\" padding_bottom_1=\"18%\" padding_left_1=\"10%\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"18%\" padding_left=\"10%\" padding_top=\"18%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"#top\" button_text=\"Our Work\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" animation_style=\"fade\" locked=\"off\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est. [/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/bedroom.jpg\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"100px||100px|\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" contenteditable=\"true\" data-shortcode-id=\"1.0.0.0-1515376821367\">Insightful design and exemplary construction</h2>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering the comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\" use_icon=\"on\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" font_icon=\"%%259%%\"]<p>• Interior Design<br />• Landcape Design</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\" use_icon=\"on\" icon_color=\"#ffffff\" use_circle=\"on\" font_icon=\"%%270%%\"]<p>• Commercial<br />• Residential</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\" use_icon=\"on\" icon_color=\"#ffffff\" use_circle=\"on\" font_icon=\"%%210%%\"]<p>• Town Planning<br />• Cost Control</p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" padding_top_2=\"100px\" padding_right_2=\"60px\" padding_bottom_2=\"100px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/section-bg-5.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.93\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_bottom=\"100px\" padding_right=\"60px\" padding_top=\"100px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Work\" button_url=\"#top\" button_text=\"View Portfolio\" use_background_color=\"off\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\"]Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae lorem ipsum esttiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero.\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>From The Blog</h2>\r\nMauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Blog Posts Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" show_pagination=\"off\" offset_number=\"0\" _builder_version=\"3.0.93\" header_level=\"h4\" header_font=\"Muli|600|||||||\" header_font_size=\"18px\" header_line_height=\"1.4em\" body_font=\"Muli||||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" meta_font=\"Muli|600|||||||\" meta_font_size=\"14px\" meta_text_color=\"rgba(0,0,0,0.3)\" border_width_all=\"0px\" custom_margin=\"|||\" custom_padding=\"|||\"][/et_pb_blog][et_pb_button button_text=\"Read More\" button_alignment=\"center\" _builder_version=\"3.0.93\" custom_margin=\"|||\" custom_margin_tablet=\"30px|||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" locked=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/section-bg-2.jpg\" background_position=\"bottom_center\" custom_padding=\"8%|0px|8%|0px\"][et_pb_row custom_padding=\"|||\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Weekly Newsletter.\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" use_focus_border_color=\"off\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. [/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]We won\'t spam!\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-04-27 01:13:07", "2018-04-27 01:13:07", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("48", "1", "2018-04-27 01:12:56", "2018-04-27 01:12:56", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.93\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/bedroom.jpg\" padding_top_1=\"18%\" padding_bottom_1=\"18%\" padding_left_1=\"10%\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"18%\" padding_left=\"10%\" padding_top=\"18%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"#top\" button_text=\"Our Work\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" animation_style=\"fade\" locked=\"off\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est. [/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/bedroom.jpg\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"100px||100px|\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" contenteditable=\"true\" data-shortcode-id=\"1.0.0.0-1515376821367\">Insightful design and exemplary construction</h2>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering the comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\" use_icon=\"on\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"on\" use_icon_font_size=\"on\" font_icon=\"%%259%%\"]<p>• Interior Design<br />• Landcape Design</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\" use_icon=\"on\" icon_color=\"#ffffff\" use_circle=\"on\" font_icon=\"%%270%%\"]<p>• Commercial<br />• Residential</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\" use_icon=\"on\" icon_color=\"#ffffff\" use_circle=\"on\" font_icon=\"%%210%%\"]<p>• Town Planning<br />• Cost Control</p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" padding_top_2=\"100px\" padding_right_2=\"60px\" padding_bottom_2=\"100px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/section-bg-5.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.93\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_bottom=\"100px\" padding_right=\"60px\" padding_top=\"100px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Work\" button_url=\"#top\" button_text=\"View Portfolio\" use_background_color=\"off\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\"]Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae lorem ipsum esttiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero.\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>From The Blog</h2>\r\nMauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Blog Posts Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" show_pagination=\"off\" offset_number=\"0\" _builder_version=\"3.0.93\" header_level=\"h4\" header_font=\"Muli|600|||||||\" header_font_size=\"18px\" header_line_height=\"1.4em\" body_font=\"Muli||||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" meta_font=\"Muli|600|||||||\" meta_font_size=\"14px\" meta_text_color=\"rgba(0,0,0,0.3)\" border_width_all=\"0px\" custom_margin=\"|||\" custom_padding=\"|||\"][/et_pb_blog][et_pb_button button_text=\"Read More\" button_alignment=\"center\" _builder_version=\"3.0.93\" custom_margin=\"|||\" custom_margin_tablet=\"30px|||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" locked=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/section-bg-2.jpg\" background_position=\"bottom_center\" custom_padding=\"8%|0px|8%|0px\"][et_pb_row custom_padding=\"|||\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Weekly Newsletter.\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" use_focus_border_color=\"off\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. [/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]We won\'t spam!\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-04-27 01:12:56", "2018-04-27 01:12:56", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("40", "1", "2018-04-27 00:13:39", "2018-04-27 00:13:39", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.93\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/bedroom.jpg\" padding_top_1=\"18%\" padding_bottom_1=\"18%\" padding_left_1=\"10%\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"18%\" padding_left=\"10%\" padding_top=\"18%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"We create environments for living well.\" button_url=\"#top\" button_text=\"Our Work\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" animation_style=\"fade\" locked=\"off\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est. [/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/bedroom.jpg\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"100px||100px|\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|||\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" contenteditable=\"true\" data-shortcode-id=\"1.0.0.0-1515376821367\">Everything Customized to YOU</h2>\r\nMauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Mauris non tempor quam, et lacinia sapien.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Research\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/number-icons_1.png\" image_max_width=\"38px\" admin_label=\"Process\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/number-icons_2.png\" image_max_width=\"38px\" admin_label=\"Process\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Build\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/number-icons_3.png\" image_max_width=\"38px\" admin_label=\"Process\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" padding_top_2=\"100px\" padding_right_2=\"60px\" padding_bottom_2=\"100px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/section-bg-5.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.93\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_bottom=\"100px\" padding_right=\"60px\" padding_top=\"100px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Work\" button_url=\"#top\" button_text=\"View Portfolio\" use_background_color=\"off\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\"]Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae lorem ipsum esttiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero.\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>From The Blog</h2>\r\nMauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Blog Posts Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" show_pagination=\"off\" offset_number=\"0\" _builder_version=\"3.0.93\" header_level=\"h4\" header_font=\"Muli|600|||||||\" header_font_size=\"18px\" header_line_height=\"1.4em\" body_font=\"Muli||||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" meta_font=\"Muli|600|||||||\" meta_font_size=\"14px\" meta_text_color=\"rgba(0,0,0,0.3)\" border_width_all=\"0px\" custom_margin=\"|||\" custom_padding=\"|||\"][/et_pb_blog][et_pb_button button_text=\"Read More\" button_alignment=\"center\" _builder_version=\"3.0.93\" custom_margin=\"|||\" custom_margin_tablet=\"30px|||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" locked=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/section-bg-2.jpg\" background_position=\"bottom_center\" custom_padding=\"8%|0px|8%|0px\"][et_pb_row custom_padding=\"|||\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Weekly Newsletter.\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" use_focus_border_color=\"off\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. [/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]We won\'t spam!\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-04-27 00:13:39", "2018-04-27 00:13:39", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("46", "1", "2018-04-27 01:10:45", "2018-04-27 01:10:45", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.93\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/bedroom.jpg\" padding_top_1=\"18%\" padding_bottom_1=\"18%\" padding_left_1=\"10%\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"18%\" padding_left=\"10%\" padding_top=\"18%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"#top\" button_text=\"Our Work\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" animation_style=\"fade\" locked=\"off\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est. [/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/bedroom.jpg\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"100px||100px|\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" contenteditable=\"true\" data-shortcode-id=\"1.0.0.0-1515376821367\">Insightful design and exemplary construction</h2>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering the comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\" use_icon=\"on\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"on\" use_icon_font_size=\"on\" font_icon=\"%%259%%\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\" use_icon=\"on\" icon_color=\"#ffffff\" use_circle=\"on\" font_icon=\"%%270%%\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\" use_icon=\"on\" icon_color=\"#ffffff\" use_circle=\"on\" font_icon=\"%%210%%\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" padding_top_2=\"100px\" padding_right_2=\"60px\" padding_bottom_2=\"100px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/section-bg-5.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.93\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_bottom=\"100px\" padding_right=\"60px\" padding_top=\"100px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Work\" button_url=\"#top\" button_text=\"View Portfolio\" use_background_color=\"off\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\"]Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae lorem ipsum esttiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero.\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>From The Blog</h2>\r\nMauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Blog Posts Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" show_pagination=\"off\" offset_number=\"0\" _builder_version=\"3.0.93\" header_level=\"h4\" header_font=\"Muli|600|||||||\" header_font_size=\"18px\" header_line_height=\"1.4em\" body_font=\"Muli||||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" meta_font=\"Muli|600|||||||\" meta_font_size=\"14px\" meta_text_color=\"rgba(0,0,0,0.3)\" border_width_all=\"0px\" custom_margin=\"|||\" custom_padding=\"|||\"][/et_pb_blog][et_pb_button button_text=\"Read More\" button_alignment=\"center\" _builder_version=\"3.0.93\" custom_margin=\"|||\" custom_margin_tablet=\"30px|||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" locked=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/section-bg-2.jpg\" background_position=\"bottom_center\" custom_padding=\"8%|0px|8%|0px\"][et_pb_row custom_padding=\"|||\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Weekly Newsletter.\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" use_focus_border_color=\"off\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. [/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]We won\'t spam!\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-04-27 01:10:45", "2018-04-27 01:10:45", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("44", "1", "2018-04-27 01:05:25", "2018-04-27 01:05:25", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.93\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/bedroom.jpg\" padding_top_1=\"18%\" padding_bottom_1=\"18%\" padding_left_1=\"10%\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"18%\" padding_left=\"10%\" padding_top=\"18%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"#top\" button_text=\"Our Work\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" animation_style=\"fade\" locked=\"off\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est. [/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/bedroom.jpg\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"100px||100px|\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" contenteditable=\"true\" data-shortcode-id=\"1.0.0.0-1515376821367\">Insightful design and exemplary construction</h2>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering the comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Research\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/number-icons_1.png\" image_max_width=\"38px\" admin_label=\"Process\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/number-icons_2.png\" image_max_width=\"38px\" admin_label=\"Process\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Build\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/number-icons_3.png\" image_max_width=\"38px\" admin_label=\"Process\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" padding_top_2=\"100px\" padding_right_2=\"60px\" padding_bottom_2=\"100px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/section-bg-5.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.93\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_bottom=\"100px\" padding_right=\"60px\" padding_top=\"100px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Work\" button_url=\"#top\" button_text=\"View Portfolio\" use_background_color=\"off\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\"]Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae lorem ipsum esttiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero.\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>From The Blog</h2>\r\nMauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Blog Posts Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" show_pagination=\"off\" offset_number=\"0\" _builder_version=\"3.0.93\" header_level=\"h4\" header_font=\"Muli|600|||||||\" header_font_size=\"18px\" header_line_height=\"1.4em\" body_font=\"Muli||||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" meta_font=\"Muli|600|||||||\" meta_font_size=\"14px\" meta_text_color=\"rgba(0,0,0,0.3)\" border_width_all=\"0px\" custom_margin=\"|||\" custom_padding=\"|||\"][/et_pb_blog][et_pb_button button_text=\"Read More\" button_alignment=\"center\" _builder_version=\"3.0.93\" custom_margin=\"|||\" custom_margin_tablet=\"30px|||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" locked=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/section-bg-2.jpg\" background_position=\"bottom_center\" custom_padding=\"8%|0px|8%|0px\"][et_pb_row custom_padding=\"|||\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Weekly Newsletter.\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" use_focus_border_color=\"off\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. [/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]We won\'t spam!\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-04-27 01:05:25", "2018-04-27 01:05:25", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("64", "1", "2018-04-27 01:46:11", "2018-04-27 01:46:11", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"18%\" padding_left_1=\"10%\" padding_top_2=\"10%\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"18%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"#top\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" animation_style=\"fade\" locked=\"off\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club.jpg\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"100px||100px|\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" contenteditable=\"true\" data-shortcode-id=\"1.0.0.0-1515376821367\">Insightful design and exemplary construction</h2>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Interior Design<br /> • Landcape Design</p>\n<p>We\'re a boutique Adelaide design and construction company.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Commercial<br /> • Residential</p>\n<p>We\'re passionate about innovation to create the best possible space.</p>\n<p>&nbsp;</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Town Planning<br /> • Cost Control</p>\n<p>We\'re committed to quality and value for money, delivering on time and on budget.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" padding_top_2=\"100px\" padding_right_2=\"60px\" padding_bottom_2=\"100px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/section-bg-5.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.93\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_bottom=\"100px\" padding_right=\"60px\" padding_top=\"100px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Work\" button_url=\"#top\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\"]Lorem ipsum dolor sit amet, consectetur adipiscing 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.\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/section-bg-2.jpg\" background_position=\"bottom_center\" custom_padding=\"8%|0px|8%|0px\"][et_pb_row custom_padding=\"|||\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Weekly Newsletter.\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" use_focus_border_color=\"off\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]We won\'t spam!\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-04-27 01:46:11", "2018-04-27 01:46:11", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("51", "1", "2018-04-27 01:15:10", "2018-04-27 01:15:10", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.93\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/bedroom.jpg\" padding_top_1=\"18%\" padding_bottom_1=\"18%\" padding_left_1=\"10%\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"18%\" padding_left=\"10%\" padding_top=\"18%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"#top\" button_text=\"Our Work\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" animation_style=\"fade\" locked=\"off\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est. [/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/bedroom.jpg\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"100px||100px|\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" contenteditable=\"true\" data-shortcode-id=\"1.0.0.0-1515376821367\">Insightful design and exemplary construction</h2>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering the comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\" use_icon=\"on\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" font_icon=\"%%259%%\"]<p>• Interior Design<br />• Landcape Design</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\" use_icon=\"on\" icon_color=\"#ffffff\" use_circle=\"on\" font_icon=\"%%270%%\"]<p>• Commercial<br />• Residential</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\" use_icon=\"on\" icon_color=\"#ffffff\" use_circle=\"on\" font_icon=\"%%210%%\"]<p>• Town Planning<br />• Cost Control</p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" padding_top_2=\"100px\" padding_right_2=\"60px\" padding_bottom_2=\"100px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/section-bg-5.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.93\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_bottom=\"100px\" padding_right=\"60px\" padding_top=\"100px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Work\" button_url=\"#top\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\"]Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae lorem ipsum esttiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero.\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>From The Blog</h2>\r\nMauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Blog Posts Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" show_pagination=\"off\" offset_number=\"0\" _builder_version=\"3.0.93\" header_level=\"h4\" header_font=\"Muli|600|||||||\" header_font_size=\"18px\" header_line_height=\"1.4em\" body_font=\"Muli||||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" meta_font=\"Muli|600|||||||\" meta_font_size=\"14px\" meta_text_color=\"rgba(0,0,0,0.3)\" border_width_all=\"0px\" custom_margin=\"|||\" custom_padding=\"|||\"][/et_pb_blog][et_pb_button button_text=\"Read More\" button_alignment=\"center\" _builder_version=\"3.0.93\" custom_margin=\"|||\" custom_margin_tablet=\"30px|||0px\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" locked=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/section-bg-2.jpg\" background_position=\"bottom_center\" custom_padding=\"8%|0px|8%|0px\"][et_pb_row custom_padding=\"|||\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Weekly Newsletter.\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" use_focus_border_color=\"off\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. [/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]We won\'t spam!\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-04-27 01:15:10", "2018-04-27 01:15:10", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("61", "1", "2018-04-27 01:41:14", "2018-04-27 01:41:14", "", "Murray Bridge Racing Club", "", "inherit", "open", "closed", "", "murray-bridge-racing-club", "", "", "2018-04-27 01:41:14", "2018-04-27 01:41:14", "", "6", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("62", "1", "2018-04-27 01:41:49", "2018-04-27 01:41:49", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#ededed\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"CTA Row\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"18%\" padding_left_1=\"10%\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" _builder_version=\"3.0.106\" padding_top_2=\"10%\"][et_pb_column type=\"1_2\"][et_pb_cta admin_label=\"Heading, Subheading &amp; CTA Button\" title=\"Design Innovation. Building Excellence.\" button_url=\"#top\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" animation_style=\"fade\" locked=\"off\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r\n\r\n[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"100px||100px|\" prev_background_color=\"#ededed\" next_background_color=\"#1a1a1a\"][et_pb_row admin_label=\"CTA Row\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]\r\n<h2 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" contenteditable=\"true\" data-shortcode-id=\"1.0.0.0-1515376821367\">Insightful design and exemplary construction</h2>\r\nOur team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering the comprehensive commercial and residential package.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Process\" title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]\r\n\r\n• Interior Design\r\n• Landcape Design\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Process\" title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]\r\n\r\n• Commercial\r\n• Residential\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Process\" title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]\r\n\r\n• Town Planning\r\n• Cost Control\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Works CTA Section\" background_color=\"#1a1a1a\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\" prev_background_color=\"#ffffff\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"CTA Row\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" padding_top_2=\"100px\" padding_right_2=\"60px\" padding_bottom_2=\"100px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/section-bg-5.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.93\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_cta title=\"Our Work\" button_url=\"#top\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing 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.\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/section-bg-2.jpg\" background_position=\"bottom_center\" custom_padding=\"8%|0px|8%|0px\" prev_background_color=\"#1a1a1a\"][et_pb_row admin_label=\"Subscription Row\" custom_padding=\"|||\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Weekly Newsletter.\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" use_focus_border_color=\"off\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r\n\r\n[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]\r\n\r\nWe won\'t spam!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-04-27 01:41:49", "2018-04-27 01:41:49", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("58", "1", "2018-04-27 01:34:19", "2018-04-27 01:34:19", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/North-East-Corner-Dulux-Gunmetal-Kinetic.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"18%\" padding_left_1=\"10%\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\" padding_top_2=\"10%\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"18%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"#top\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" animation_style=\"fade\" locked=\"off\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/North-East-Corner-Dulux-Gunmetal-Kinetic.jpg\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"100px||100px|\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" contenteditable=\"true\" data-shortcode-id=\"1.0.0.0-1515376821367\">Insightful design and exemplary construction</h2>\r\nOur team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering the comprehensive commercial and residential package.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]• Interior Design\r\n• Landcape Design\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]• Commercial\r\n• Residential\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]• Town Planning\r\n• Cost Control\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" padding_top_2=\"100px\" padding_right_2=\"60px\" padding_bottom_2=\"100px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/section-bg-5.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.93\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_bottom=\"100px\" padding_right=\"60px\" padding_top=\"100px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Work\" button_url=\"#top\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\"]Lorem ipsum dolor sit amet, consectetur adipiscing 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.\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/section-bg-2.jpg\" background_position=\"bottom_center\" custom_padding=\"8%|0px|8%|0px\"][et_pb_row custom_padding=\"|||\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Weekly Newsletter.\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" use_focus_border_color=\"off\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]We won\'t spam!\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-04-27 01:34:19", "2018-04-27 01:34:19", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("418", "1", "2018-06-10 09:28:20", "2018-06-10 09:28:20", "<p>[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]</p><h1>Battunga Residence</h1><p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"372,373,374,375\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]</p>", "Battunga Residence", "", "inherit", "closed", "closed", "", "369-autosave-v1", "", "", "2018-06-10 09:28:20", "2018-06-10 09:28:20", "", "369", "https://beyondink.alluredigitalmarketing.com.au/369-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("78", "1", "2018-04-27 02:11:57", "2018-04-27 02:11:57", "", "Beyond Ink Logo White Transparent", "", "inherit", "open", "closed", "", "beyond-ink-logo-white-transparent", "", "", "2018-04-27 02:11:57", "2018-04-27 02:11:57", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Beyond-Ink-Logo-White-Transparent.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("1042", "1", "2018-07-18 10:49:38", "2018-07-18 10:49:38", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Aldgate Renovation</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row background_color=\"#f1f1f1\" _builder_version=\"3.0.106\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p><strong>Our Involvement: Design, Town Planning</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"433,434,435,436,437,438,439,440,441,442,443,444\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Aldgate Renovation", "", "inherit", "closed", "closed", "", "426-revision-v1", "", "", "2018-07-18 10:49:38", "2018-07-18 10:49:38", "", "426", "https://beyondink.alluredigitalmarketing.com.au/426-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("427", "1", "2018-06-10 09:33:34", "2018-06-10 09:33:34", "[et_pb_section bb_built=\"1\"][et_pb_row][/et_pb_row][/et_pb_section]", "Aldgate Renovation", "", "inherit", "closed", "closed", "", "426-revision-v1", "", "", "2018-06-10 09:33:34", "2018-06-10 09:33:34", "", "426", "https://beyondink.alluredigitalmarketing.com.au/426-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("104", "1", "2018-05-10 08:41:44", "2018-05-10 08:41:44", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.93\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#e9f0f6\" background_color_gradient_end=\"rgba(233,240,246,0.2)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/section-bg-6.jpg\" custom_padding=\"10%||20%|\" next_background_color=\"#e9f0f6\"][et_pb_row admin_label=\"Header Row\" custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading &amp; Subheading\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Contact Us</h1>\r\nMauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Contact Section\" background_color=\"#e9f0f6\" _builder_version=\"3.0.93\" custom_padding=\"54px|0px|100px|0px\" prev_background_color=\"#ffffff\" next_background_color=\"#000000\"][et_pb_row admin_label=\"Message Row\" custom_padding=\"|||\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#737373\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"left\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]\r\n<h2>Drop Us A Message</h2>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_contact_form captcha=\"off\" form_background_color=\"rgba(26,26,26,0.08)\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.92\" title_font=\"||||||||\" form_field_font=\"Muli|600|||||||\" form_field_font_size=\"16px\" form_field_text_color=\"rgba(0,0,0,0.6)\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.0.92\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Map Section\" background_color=\"#e9f0f6\" _builder_version=\"3.0.92\" custom_padding=\"100px|0px|100px|0px\" prev_background_color=\"#000000\"][et_pb_row admin_label=\"Map Row\" custom_padding=\"|||\" custom_margin=\"|||\" _builder_version=\"3.0.93\" custom_margin_last_edited=\"off|desktop\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]\r\n<h2>Visit Us</h2>\r\nMauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.\r\n\r\n[/et_pb_text][et_pb_map address=\"San Francisco, CA, USA\" zoom_level=\"12\" address_lat=\"37.7749295\" address_lng=\"-122.4194155\" _builder_version=\"3.0.93\" custom_margin=\"60px|||\"][et_pb_map_pin pin_address=\"San Francisco, CA, USA\" pin_address_lat=\"37.7749295\" pin_address_lng=\"-122.4194155\" _builder_version=\"3.0.93\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact", "", "inherit", "closed", "closed", "", "102-revision-v1", "", "", "2018-05-10 08:41:44", "2018-05-10 08:41:44", "", "102", "https://beyondink.alluredigitalmarketing.com.au/102-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("66", "1", "2018-04-27 01:48:22", "2018-04-27 01:48:22", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"18%\" padding_left_1=\"10%\" padding_top_2=\"10%\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"18%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"#top\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" animation_style=\"fade\" locked=\"off\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club.jpg\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"100px||100px|\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" contenteditable=\"true\" data-shortcode-id=\"1.0.0.0-1515376821367\">Insightful design and exemplary construction</h2>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Interior Design<br /> • Landcape Design</p>\n<p>A boutique residential and commercial design and construction company.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Commercial<br /> • Residential</p>\n<p>Passionate about innovation to create the best possible space.</p>\n<p>&nbsp;</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Town Planning<br /> • Cost Control</p>\n<p>Committed to quality and value for money, delivering on time and on budget.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" padding_top_2=\"100px\" padding_right_2=\"60px\" padding_bottom_2=\"100px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/section-bg-5.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.93\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_bottom=\"100px\" padding_right=\"60px\" padding_top=\"100px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Work\" button_url=\"#top\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\"]Lorem ipsum dolor sit amet, consectetur adipiscing 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.\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/section-bg-2.jpg\" background_position=\"bottom_center\" custom_padding=\"8%|0px|8%|0px\"][et_pb_row custom_padding=\"|||\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Weekly Newsletter.\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" use_focus_border_color=\"off\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]We won\'t spam!\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-04-27 01:48:22", "2018-04-27 01:48:22", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("73", "1", "2018-04-27 02:01:29", "2018-04-27 02:01:29", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"18%\" padding_left_1=\"10%\" padding_top_2=\"10%\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"18%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"#top\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" animation_style=\"fade\" locked=\"off\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club.jpg\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"100px||100px|\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" contenteditable=\"true\" data-shortcode-id=\"1.0.0.0-1515376821367\">Insightful design and exemplary construction</h2>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Interior Design<br /> • Landcape Design</p>\n<p>A boutique residential and commercial design and construction company.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Commercial<br /> • Residential</p>\n<p>Passionate about innovation to create the best possible space.</p>\n<p>&nbsp;</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Town Planning<br /> • Cost Control</p>\n<p>Committed to quality and value for money, delivering on time and on budget.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Bridgewater-House.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.106\" show_bottom_space=\"off\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Work\" button_url=\"#top\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\"]Lorem ipsum dolor sit amet, consectetur adipiscing 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.\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/section-bg-2.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|8%|0px\"][et_pb_row custom_padding=\"|||\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Weekly Newsletter.\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" use_focus_border_color=\"off\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]We won\'t spam!\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-04-27 02:01:29", "2018-04-27 02:01:29", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("71", "1", "2018-04-27 02:01:03", "2018-04-27 02:01:03", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"18%\" padding_left_1=\"10%\" padding_top_2=\"10%\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"18%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"#top\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" animation_style=\"fade\" locked=\"off\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club.jpg\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"100px||100px|\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" contenteditable=\"true\" data-shortcode-id=\"1.0.0.0-1515376821367\">Insightful design and exemplary construction</h2>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Interior Design<br /> • Landcape Design</p>\n<p>A boutique residential and commercial design and construction company.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Commercial<br /> • Residential</p>\n<p>Passionate about innovation to create the best possible space.</p>\n<p>&nbsp;</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Town Planning<br /> • Cost Control</p>\n<p>Committed to quality and value for money, delivering on time and on budget.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" padding_top_2=\"100px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Bridgewater-House.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.106\" show_bottom_space=\"off\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"100px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Work\" button_url=\"#top\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\"]Lorem ipsum dolor sit amet, consectetur adipiscing 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.\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/section-bg-2.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|8%|0px\"][et_pb_row custom_padding=\"|||\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Weekly Newsletter.\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" use_focus_border_color=\"off\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]We won\'t spam!\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-04-27 02:01:03", "2018-04-27 02:01:03", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("69", "1", "2018-04-27 01:59:42", "2018-04-27 01:59:42", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"18%\" padding_left_1=\"10%\" padding_top_2=\"10%\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"18%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"#top\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" animation_style=\"fade\" locked=\"off\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club.jpg\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"100px||100px|\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" contenteditable=\"true\" data-shortcode-id=\"1.0.0.0-1515376821367\">Insightful design and exemplary construction</h2>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Interior Design<br /> • Landcape Design</p>\n<p>A boutique residential and commercial design and construction company.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Commercial<br /> • Residential</p>\n<p>Passionate about innovation to create the best possible space.</p>\n<p>&nbsp;</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Town Planning<br /> • Cost Control</p>\n<p>Committed to quality and value for money, delivering on time and on budget.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" padding_top_2=\"100px\" padding_right_2=\"60px\" padding_bottom_2=\"100px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Bridgewater-House.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.106\" show_bottom_space=\"off\" custom_margin=\"5%|||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_bottom=\"100px\" padding_right=\"60px\" padding_top=\"100px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Work\" button_url=\"#top\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\"]Lorem ipsum dolor sit amet, consectetur adipiscing 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.\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/section-bg-2.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|8%|0px\"][et_pb_row custom_padding=\"0|0px|27px|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Weekly Newsletter.\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" use_focus_border_color=\"off\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]We won\'t spam!\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-04-27 01:59:42", "2018-04-27 01:59:42", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("75", "1", "2018-04-27 02:03:00", "2018-04-27 02:03:00", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"18%\" padding_left_1=\"10%\" padding_top_2=\"10%\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"18%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"#top\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" animation_style=\"fade\" locked=\"off\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club.jpg\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"100px||100px|\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" contenteditable=\"true\" data-shortcode-id=\"1.0.0.0-1515376821367\">Insightful design and exemplary construction</h2>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Interior Design<br /> • Landcape Design</p>\n<p>A boutique residential and commercial design and construction company.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Commercial<br /> • Residential</p>\n<p>Passionate about innovation to create the best possible space.</p>\n<p>&nbsp;</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Town Planning<br /> • Cost Control</p>\n<p>Committed to quality and value for money, delivering on time and on budget.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Bridgewater-House.jpg\" force_fullwidth=\"on\" _builder_version=\"3.0.106\" show_bottom_space=\"off\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Work\" button_url=\"#top\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\"]Lorem ipsum dolor sit amet, consectetur adipiscing 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.\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/section-bg-2.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|8%|0px\"][et_pb_row custom_padding=\"58px|0px|27px|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Weekly Newsletter.\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" use_focus_border_color=\"off\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]We won\'t spam!\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-04-27 02:03:00", "2018-04-27 02:03:00", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("410", "1", "2018-06-10 08:59:12", "2018-06-10 08:59:12", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/North-East-Corner-Dulux-Gunmetal-Kinetic.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Commercial Projects</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"92px|0px|27px|0px\" admin_label=\"Blog Posts Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"179,182,181,184,180,185,183,186,188,187\" gallery_captions=\",,,,,,,,,\" posts_number=\"14\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.49)\" box_shadow_style_image=\"preset1\" box_shadow_blur_image=\"23px\" _builder_version=\"3.0.106\" title_font=\"||||||||\" title_text_color=\"#000000\" pagination_font=\"||||||||\" custom_margin=\"|||\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_3605-800x600.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Barker-Plaza-Entrance-800x534.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-2-1.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/img_26711.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/K1-2.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/55708_165645590125507_7049646_o.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/img_2879.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Pulteney-Plaza-800x600.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/img_3053.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/imported-08-02-2015-1087.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Commercial", "", "inherit", "closed", "closed", "", "175-revision-v1", "", "", "2018-06-10 08:59:12", "2018-06-10 08:59:12", "", "175", "https://beyondink.alluredigitalmarketing.com.au/175-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("96", "1", "2018-05-10 07:54:05", "2018-05-10 07:54:05", "", "Murray Bridge Racing Club", "", "inherit", "open", "closed", "", "south-west-corner-2-1280x705", "", "", "2018-05-17 11:02:45", "2018-05-17 11:02:45", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("111", "1", "2018-05-10 08:47:21", "2018-05-10 08:47:21", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#e9f0f6\" background_color_gradient_end=\"rgba(233,240,246,0.2)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/North-East-Corner-Dulux-Gunmetal-Kinetic.jpg\" custom_padding=\"10%||20%|\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Contact Us</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Contact Section\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|100px|0px\"][et_pb_row custom_padding=\"28px|0px|27px|0px\" admin_label=\"Message Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#737373\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"left\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>Send Us A Message</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" form_background_color=\"rgba(26,26,26,0.08)\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.106\" title_font=\"||||||||\" form_field_font=\"Muli|600|||||||\" form_field_font_size=\"16px\" form_field_text_color=\"rgba(0,0,0,0.6)\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#000000\" button_border_width=\"10px\" button_border_color=\"#000000\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.0.92\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact", "", "inherit", "closed", "closed", "", "102-revision-v1", "", "", "2018-05-10 08:47:21", "2018-05-10 08:47:21", "", "102", "https://beyondink.alluredigitalmarketing.com.au/102-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("107", "1", "2018-05-10 08:44:54", "2018-05-10 08:44:54", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#e9f0f6\" background_color_gradient_end=\"rgba(233,240,246,0.2)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/North-East-Corner-Dulux-Gunmetal-Kinetic.jpg\" custom_padding=\"10%||20%|\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Contact Us</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#e9f0f6\" admin_label=\"Contact Section\" _builder_version=\"3.0.93\" custom_padding=\"54px|0px|100px|0px\"][et_pb_row custom_padding=\"|||\" admin_label=\"Message Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#737373\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"left\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>Send Us A Message</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" form_background_color=\"rgba(26,26,26,0.08)\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.106\" title_font=\"||||||||\" form_field_font=\"Muli|600|||||||\" form_field_font_size=\"16px\" form_field_text_color=\"rgba(0,0,0,0.6)\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#000000\" button_border_width=\"10px\" button_border_color=\"#000000\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.0.92\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#e9f0f6\" admin_label=\"Map Section\" _builder_version=\"3.0.92\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" admin_label=\"Map Row\" _builder_version=\"3.0.93\" custom_margin_last_edited=\"off|desktop\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>Visit Us</h2>\r\nMauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.\r[/et_pb_text][et_pb_map address=\"San Francisco, CA, USA\" zoom_level=\"12\" address_lat=\"37.7749295\" address_lng=\"-122.4194155\" _builder_version=\"3.0.106\" custom_margin=\"60px|||\" _map_version=\"0\"][et_pb_map_pin pin_address=\" 75 Mount Barker Road Hahndorf South Australia 5245\" pin_address_lat=\"37.7749295\" pin_address_lng=\"-122.4194155\" _builder_version=\"3.0.106\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact", "", "inherit", "closed", "closed", "", "102-revision-v1", "", "", "2018-05-10 08:44:54", "2018-05-10 08:44:54", "", "102", "https://beyondink.alluredigitalmarketing.com.au/102-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("105", "1", "2018-05-10 08:44:20", "2018-05-10 08:44:20", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#e9f0f6\" background_color_gradient_end=\"rgba(233,240,246,0.2)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/North-East-Corner-Dulux-Gunmetal-Kinetic.jpg\" custom_padding=\"10%||20%|\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Contact Us</h1>\r\nMauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#e9f0f6\" admin_label=\"Contact Section\" _builder_version=\"3.0.93\" custom_padding=\"54px|0px|100px|0px\"][et_pb_row custom_padding=\"|||\" admin_label=\"Message Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#737373\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"left\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>Send Us A Message</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" form_background_color=\"rgba(26,26,26,0.08)\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.106\" title_font=\"||||||||\" form_field_font=\"Muli|600|||||||\" form_field_font_size=\"16px\" form_field_text_color=\"rgba(0,0,0,0.6)\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#000000\" button_border_width=\"10px\" button_border_color=\"#000000\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.0.92\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#e9f0f6\" admin_label=\"Map Section\" _builder_version=\"3.0.92\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_padding=\"|||\" custom_margin=\"|||\" admin_label=\"Map Row\" _builder_version=\"3.0.93\" custom_margin_last_edited=\"off|desktop\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>Visit Us</h2>\r\nMauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.\r[/et_pb_text][et_pb_map address=\"San Francisco, CA, USA\" zoom_level=\"12\" address_lat=\"37.7749295\" address_lng=\"-122.4194155\" _builder_version=\"3.0.106\" custom_margin=\"60px|||\" _map_version=\"0\"][et_pb_map_pin pin_address=\" 75 Mount Barker Road Hahndorf South Australia 5245\" pin_address_lat=\"37.7749295\" pin_address_lng=\"-122.4194155\" _builder_version=\"3.0.106\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact", "", "inherit", "closed", "closed", "", "102-revision-v1", "", "", "2018-05-10 08:44:20", "2018-05-10 08:44:20", "", "102", "https://beyondink.alluredigitalmarketing.com.au/102-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("81", "1", "2018-04-27 02:27:39", "2018-04-27 02:27:39", "", "Murray Bridge Racing Club", "", "inherit", "open", "closed", "", "murray-bridge-racing-club-website-footer", "", "", "2018-04-27 02:27:51", "2018-04-27 02:27:51", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("82", "1", "2018-04-27 02:29:14", "2018-04-27 02:29:14", "", "Murray Bridge Racing Club", "", "inherit", "open", "closed", "", "murray-bridge-racing-club-website-footer-2", "", "", "2018-04-27 02:29:19", "2018-04-27 02:29:19", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("83", "1", "2018-04-27 02:30:38", "2018-04-27 02:30:38", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"18%\" padding_left_1=\"10%\" padding_top_2=\"10%\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"18%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"#top\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" animation_style=\"fade\" locked=\"off\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club.jpg\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"100px||100px|\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" contenteditable=\"true\" data-shortcode-id=\"1.0.0.0-1515376821367\">Insightful design and exemplary construction</h2>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Interior Design<br /> • Landcape Design</p>\n<p>A boutique residential and commercial design and construction company.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Commercial<br /> • Residential</p>\n<p>Passionate about innovation to create the best possible space.</p>\n<p> </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Town Planning<br /> • Cost Control</p>\n<p>Committed to quality and value for money, delivering on time and on budget.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Bridgewater-House.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Work\" button_url=\"#top\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\"]Lorem ipsum dolor sit amet, consectetur adipiscing 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.\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-1.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|8%|0px\"][et_pb_row custom_padding=\"11px|0px|27px|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" use_focus_border_color=\"off\" custom_margin=\"|||\" custom_padding=\"10%|||\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><em><span style=\"color: #ffffff;\">We promise not to spam!</span></em></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-04-27 02:30:38", "2018-04-27 02:30:38", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("85", "1", "2018-04-27 02:31:23", "2018-04-27 02:31:23", "", "Murray Bridge Racing Club", "", "inherit", "open", "closed", "", "murray-bridge-racing-club-website-footer-3", "", "", "2018-04-27 02:31:41", "2018-04-27 02:31:41", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("86", "1", "2018-04-27 02:36:38", "2018-04-27 02:36:38", "", "Murray Bridge Racing Club", "", "inherit", "open", "closed", "", "murray-bridge-racing-club-website-footer-4", "", "", "2018-04-27 02:36:46", "2018-04-27 02:36:46", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("87", "1", "2018-04-27 02:36:58", "2018-04-27 02:36:58", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"18%\" padding_left_1=\"10%\" padding_top_2=\"10%\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"18%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"#top\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" animation_style=\"fade\" locked=\"off\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club.jpg\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"100px||100px|\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" contenteditable=\"true\" data-shortcode-id=\"1.0.0.0-1515376821367\">Insightful design and exemplary construction</h2>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Interior Design<br /> • Landcape Design</p>\n<p>A boutique residential and commercial design and construction company.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Commercial<br /> • Residential</p>\n<p>Passionate about innovation to create the best possible space.</p>\n<p> </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Town Planning<br /> • Cost Control</p>\n<p>Committed to quality and value for money, delivering on time and on budget.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Bridgewater-House.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Work\" button_url=\"#top\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\"]Lorem ipsum dolor sit amet, consectetur adipiscing 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.\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|8%|0px\"][et_pb_row custom_padding=\"11px|0px|27px|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" use_focus_border_color=\"off\" custom_margin=\"|||\" custom_padding=\"10%|||\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><em><span style=\"color: #ffffff;\">We promise not to spam!</span></em></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-04-27 02:36:58", "2018-04-27 02:36:58", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("91", "1", "2018-04-27 02:46:07", "2018-04-27 02:46:07", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"18%\" padding_left_1=\"10%\" padding_top_2=\"10%\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"18%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"#top\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" animation_style=\"fade\" locked=\"off\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club.jpg\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"100px||100px|\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" contenteditable=\"true\" data-shortcode-id=\"1.0.0.0-1515376821367\">Insightful design and exemplary construction</h2>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Interior Design<br /> • Landcape Design</p>\n<p>A boutique residential and commercial design and construction company.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Commercial<br /> • Residential</p>\n<p>Passionate about innovation to create the best possible space.</p>\n<p> </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Town Planning<br /> • Cost Control</p>\n<p>Committed to quality and value for money, delivering on time and on budget.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Bridgewater-House.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Work\" button_url=\"#top\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\"]Lorem ipsum dolor sit amet, consectetur adipiscing 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.\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|8%|0px\"][et_pb_row custom_padding=\"11px|0px|27px|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"10%|||\" use_focus_border_color=\"off\" custom_button=\"on\" button_font=\"||||||||\" button_border_color=\"#9dd00f\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><em><span style=\"color: #ffffff;\">We promise not to spam!</span></em></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-04-27 02:46:07", "2018-04-27 02:46:07", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("102", "1", "2018-05-10 08:44:20", "2018-05-10 08:44:20", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"5deg\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705-e1525939024788.jpg\" custom_padding=\"2.2%|0px|94px|0px\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1983px\" custom_padding=\"76px|0px|12px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Contact Us</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Contact Section\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|100px|0\"][et_pb_row custom_padding=\"28px|0px|27px|0px\" admin_label=\"Message Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form email=\"admin@beyondink.com.au\" success_message=\"Your message has been sent!\" form_background_color=\"rgba(26,26,26,0.08)\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.106\" title_font=\"||||||||\" form_field_font=\"Muli|600|||||||\" form_field_font_size=\"16px\" form_field_text_color=\"rgba(0,0,0,0.6)\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#000000\" button_border_width=\"10px\" button_border_color=\"#000000\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.0.92\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.106\"]<h4 style=\"text-align: center;\">Beyond Ink</h4>\n<p style=\"text-align: center;\"><strong>Address:</strong> 75 Mount Barker Road Hahndorf SA 5245<br /> <strong>Phone:</strong> 08 8388 1179<br /> <strong>Email: </strong><a href=\"mailto:admin@beyondink.com.au\" target=\"_blank\" rel=\"noopener noreferrer\">admin@beyondink.com.au</a></p>\n<p style=\"text-align: center;\">\n[/et_pb_text][et_pb_divider _builder_version=\"3.0.106\" max_width=\"98%\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1564px\" custom_padding=\"1px|0px|0|0px\" custom_margin=\"|||\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"302,252,182,333\" gallery_captions=\",,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" hover_overlay_color=\"rgba(255,255,255,0.63)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact", "", "publish", "closed", "closed", "", "contact", "", "", "2018-07-08 10:31:20", "2018-07-08 10:31:20", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=102", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("98", "1", "2018-05-10 07:57:01", "2018-05-10 07:57:01", "", "Murray Bridge Racing Club", "", "inherit", "closed", "closed", "", "96-autosave-v1", "", "", "2018-05-10 07:57:01", "2018-05-10 07:57:01", "", "96", "https://beyondink.alluredigitalmarketing.com.au/96-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("100", "1", "2018-05-10 08:34:36", "2018-05-10 08:34:36", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"0px|0px|0|0px\" custom_margin=\"|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"18%\" padding_left_1=\"10%\" padding_top_2=\"10%\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\" background_position_2=\"center\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"18%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"#top\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\" animation_style=\"fade\" locked=\"off\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"100px||100px|\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" contenteditable=\"true\" data-shortcode-id=\"1.0.0.0-1515376821367\">Insightful design and exemplary construction</h2>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Interior Design<br /> • Landcape Design</p>\n<p>A boutique residential and commercial design and construction company.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Commercial<br /> • Residential</p>\n<p>Passionate about innovation to create the best possible space.</p>\n<p> </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Town Planning<br /> • Cost Control</p>\n<p>Committed to quality and value for money, delivering on time and on budget.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Bridgewater-House.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Work\" button_url=\"#top\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\"]Lorem ipsum dolor sit amet, consectetur adipiscing 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.\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|8%|0px\"][et_pb_row custom_padding=\"11px|0px|27px|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"20%|||\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" use_focus_border_color=\"off\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><em><span style=\"color: #ffffff;\">We promise not to spam!</span></em></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-05-10 08:34:36", "2018-05-10 08:34:36", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("109", "1", "2018-05-10 08:45:16", "2018-05-10 08:45:16", " ", "", "", "publish", "closed", "closed", "", "109", "", "", "2018-07-30 02:30:40", "2018-07-30 02:30:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?p=109", "36", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("112", "1", "2018-05-10 08:48:27", "2018-05-10 08:48:27", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#e9f0f6\" background_color_gradient_end=\"rgba(233,240,246,0.2)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/North-East-Corner-Dulux-Gunmetal-Kinetic.jpg\" custom_padding=\"5%||20%|\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Contact Us</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Contact Section\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|100px|0px\"][et_pb_row custom_padding=\"28px|0px|27px|0px\" admin_label=\"Message Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#737373\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"left\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>Send Us A Message</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" form_background_color=\"rgba(26,26,26,0.08)\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.106\" title_font=\"||||||||\" form_field_font=\"Muli|600|||||||\" form_field_font_size=\"16px\" form_field_text_color=\"rgba(0,0,0,0.6)\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#000000\" button_border_width=\"10px\" button_border_color=\"#000000\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.0.92\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact", "", "inherit", "closed", "closed", "", "102-revision-v1", "", "", "2018-05-10 08:48:27", "2018-05-10 08:48:27", "", "102", "https://beyondink.alluredigitalmarketing.com.au/102-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("114", "1", "2018-05-10 08:50:52", "2018-05-10 08:50:52", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#e9f0f6\" background_color_gradient_end=\"rgba(233,240,246,0.2)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/North-East-Corner-Dulux-Gunmetal-Kinetic.jpg\" custom_padding=\"5%||20%|\" background_color_gradient_end_position=\"44%\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Contact Us</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Contact Section\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|100px|0px\"][et_pb_row custom_padding=\"28px|0px|27px|0px\" admin_label=\"Message Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#737373\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"left\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>Send Us A Message</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" form_background_color=\"rgba(26,26,26,0.08)\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.106\" title_font=\"||||||||\" form_field_font=\"Muli|600|||||||\" form_field_font_size=\"16px\" form_field_text_color=\"rgba(0,0,0,0.6)\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#000000\" button_border_width=\"10px\" button_border_color=\"#000000\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.0.92\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact", "", "inherit", "closed", "closed", "", "102-revision-v1", "", "", "2018-05-10 08:50:52", "2018-05-10 08:50:52", "", "102", "https://beyondink.alluredigitalmarketing.com.au/102-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("119", "1", "2018-05-10 23:08:28", "2018-05-10 23:08:28", "", "Beyond Ink Logo Sq", "", "inherit", "open", "closed", "", "beyond-ink-logo-sq", "", "", "2018-05-10 23:08:28", "2018-05-10 23:08:28", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Beyond-Ink-Logo-Sq.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("120", "1", "2018-05-10 23:16:18", "2018-05-10 23:16:18", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#cccccc\" background_color_gradient_end=\"#9dd00f\" background_color_gradient_direction=\"5deg\" background_color_gradient_end_position=\"64%\" custom_padding=\"2.2%|0px|41px|0px\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1983px\" custom_padding=\"0|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Our Projects</h1>\n<span style=\"color: #ffffff;\">From major regional developments, to grand home designs - you can feel at ease with our beginning-to-end design, construction, and project management expertise.</span>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_position=\"top_center\" custom_padding=\"0|0px|26px|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.106\"][/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"51px|0px|27px|0px\" make_equal=\"on\" background_color_2=\"#f3f3f3\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Front-Entry-Portal-Dulux-Gunmetal-Kinetic-2.jpg\" show_bottom_space=\"off\" _builder_version=\"3.0.106\" custom_padding=\"|||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Commercial Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/\" button_text=\"Discover Commercial Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]<p>Our commercial portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, the new Wolf Blass Gallery and Museum, and the redesign of the Mount Barker Racing Club at Gifford Hill.</p>[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#f3f3f3\" background_color_2=\"#f3f3f3\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Residential Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/residential/\" button_text=\"Discover Residential Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]As residential builders in Adelaide, we\'ve designed and built dozens of beautiful homes in South Australia. With our expertise and exemplary construction experience, we can build you a dream home beyond your expectations.[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/WEB_70_Hogan_Dusk__26_of_35_-800x534.jpg\" _builder_version=\"3.0.106\" custom_margin=\"|||\" show_bottom_space=\"off\" custom_padding=\"|||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_2=\"#f3f3f3\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/3__MCOLES__MKC5307-1024x684.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Renovations\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/restorations/\" button_text=\"Discover Renovation Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]No renovation is too difficult for our team. We can completely transform your existing home or site to your ideal specifications, whilst ensuring your project is on time and on budget.[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#f3f3f3\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Coming Soon\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/coming-soon/\" button_text=\"Discover Work In Progress\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]Our team is always working on a number of commercial and residential projects in South Australia and beyond.[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/North-East-Corner-Dulux-Gunmetal-Kinetic-Sm.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "Projects", "", "publish", "closed", "closed", "", "portfolio", "", "", "2018-07-24 12:20:22", "2018-07-24 12:20:22", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=120", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("121", "1", "2018-05-10 23:12:31", "2018-05-10 23:12:31", "[et_pb_section bb_built=\"1\"][et_pb_row][/et_pb_row][/et_pb_section]", "Projects", "", "inherit", "closed", "closed", "", "120-revision-v1", "", "", "2018-05-10 23:12:31", "2018-05-10 23:12:31", "", "120", "https://beyondink.alluredigitalmarketing.com.au/120-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("858", "1", "2018-06-12 10:12:46", "2018-06-12 10:12:46", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" background_position_2=\"center\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/contact/\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]<p>As a boutique design and construction company, we\'re big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"21px||0|\"][et_pb_row _builder_version=\"3.0.106\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/North-East-Corner-Dulux-Gunmetal-Kinetic-800x254.jpg\" _builder_version=\"3.0.106\" align=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"2188px\" use_custom_gutter=\"on\" gutter_width=\"6\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2><strong>Commercial Projects. New Homes. Additions.</strong></h2>\n<h3><span style=\"color: #000000;\"><strong>Insightful design. Exemplary construction.</strong></span></h3>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\" custom_padding=\"27px|0px|0|0px\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Interior Design<br /> • Landcape Design</p>\n<p>We\'re a commercial and residential design and construction company.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Commercial<br /> • Residential</p>\n<p>We\'re passionate about innovation to create the best possible space.</p>\n<p> </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Town Planning<br /> • Cost Control</p>\n<p>We\'re committed to quality and value for money, delivering on time and on budget.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-13-of-47-800x535.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Barker-Plaza-Entrance-800x534.jpg\" _builder_version=\"3.0.106\" custom_margin=\"||25px|\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0|0px|23px|0px\" custom_margin=\"||50px|\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/11-Walker-Street-HI-RES-1024x523.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"0px|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]<p><span style=\"color: #ffffff;\">Our portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_margin=\"-50px||-50px|\" custom_padding=\"0|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]<p>Sign up to keep up to date with what\'s happening at Beyond Ink.</p>[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"]<p><em><span style=\"color: #ffffff;\">We promise not to spam!</span></em></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-06-12 10:12:46", "2018-06-12 10:12:46", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("861", "1", "2018-06-12 10:13:34", "2018-06-12 10:13:34", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" background_position_2=\"center\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/contact/\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]<p>As a boutique design and construction company, we\'re big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"21px||0|\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"2188px\" use_custom_gutter=\"on\" gutter_width=\"6\" custom_padding=\"0|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2><strong>Commercial Projects. New Homes. Additions.</strong></h2>\n<h3><span style=\"color: #000000;\"><strong>Insightful design. Exemplary construction.</strong></span></h3>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/North-East-Corner-Dulux-Gunmetal-Kinetic-800x254.jpg\" _builder_version=\"3.0.106\" align=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\" custom_padding=\"27px|0px|0|0px\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Interior Design<br /> • Landcape Design</p>\n<p>We\'re a commercial and residential design and construction company.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Commercial<br /> • Residential</p>\n<p>We\'re passionate about innovation to create the best possible space.</p>\n<p> </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Town Planning<br /> • Cost Control</p>\n<p>We\'re committed to quality and value for money, delivering on time and on budget.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-13-of-47-800x535.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Barker-Plaza-Entrance-800x534.jpg\" _builder_version=\"3.0.106\" custom_margin=\"||25px|\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0|0px|23px|0px\" custom_margin=\"||50px|\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/11-Walker-Street-HI-RES-1024x523.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"0px|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]<p><span style=\"color: #ffffff;\">Our portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_margin=\"-50px||-50px|\" custom_padding=\"0|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]<p>Sign up to keep up to date with what\'s happening at Beyond Ink.</p>[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"]<p><em><span style=\"color: #ffffff;\">We promise not to spam!</span></em></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-06-12 10:13:34", "2018-06-12 10:13:34", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("117", "1", "2018-05-10 23:06:41", "2018-05-10 23:06:41", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"0px|0px|0|0px\" custom_margin=\"|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"18%\" padding_left_1=\"10%\" padding_top_2=\"10%\" background_position_2=\"center\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"18%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"#top\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\" animation_style=\"fade\" locked=\"off\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"100px||100px|\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" contenteditable=\"true\" data-shortcode-id=\"1.0.0.0-1515376821367\">Insightful design and exemplary construction</h2>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Interior Design<br /> • Landcape Design</p>\n<p>A boutique residential and commercial design and construction company.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Commercial<br /> • Residential</p>\n<p>Passionate about innovation to create the best possible space.</p>\n<p> </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Town Planning<br /> • Cost Control</p>\n<p>Committed to quality and value for money, delivering on time and on budget.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Bridgewater-House.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Work\" button_url=\"#top\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\"]Lorem ipsum dolor sit amet, consectetur adipiscing 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.\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|8%|0px\"][et_pb_row custom_padding=\"11px|0px|27px|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"20%|||\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" use_focus_border_color=\"off\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><em><span style=\"color: #ffffff;\">We promise not to spam!</span></em></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-05-10 23:06:41", "2018-05-10 23:06:41", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("130", "1", "2018-05-10 23:20:17", "2018-05-10 23:20:17", "[et_pb_section fb_built=\"1\" background_color=\"#e9f0f6\" admin_label=\"Header Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"10%|0px|100px|0px\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.92\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Projects</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_2=\"#ffffff\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/image-7.jpg\" _builder_version=\"3.0.93\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Commercial\" button_url=\"#top\" button_text=\"Full Case Study\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#ffffff\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Residential\" button_url=\"#top\" button_text=\"Full Case Study\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/image-5.jpg\" _builder_version=\"3.0.92\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#ffffff\" background_color_2=\"#ffffff\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/image-6.jpg\" _builder_version=\"3.0.99\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Renovations\" button_url=\"#top\" button_text=\"Full Case Study\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#ffffff\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Coming Soon\" button_url=\"#top\" button_text=\"Full Case Study\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/image-9.jpg\" _builder_version=\"3.0.93\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "Projects", "", "inherit", "closed", "closed", "", "120-revision-v1", "", "", "2018-05-10 23:20:17", "2018-05-10 23:20:17", "", "120", "https://beyondink.alluredigitalmarketing.com.au/120-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("128", "1", "2018-05-10 23:16:18", "2018-05-10 23:16:18", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#e9f0f6\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"10%|0px|100px|0px\"][et_pb_row admin_label=\"Header Row\" custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.92\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading &amp; Subheading\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Case Studies</h1>\r\nMauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Case Study Row\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_2=\"#ffffff\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/image-7.jpg\" _builder_version=\"3.0.93\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_cta admin_label=\"Title Paragraph &amp; CTA Button\" title=\"Peter &amp; Melkhova’s Home\" button_url=\"#top\" button_text=\"Full Case Study\" use_background_color=\"off\" background_layout=\"light\" _builder_version=\"3.0.93\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Case Study Row\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#ffffff\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\"][et_pb_cta admin_label=\"Title Paragraph &amp; CTA Button\" title=\"Fay Office Interior\" button_url=\"#top\" button_text=\"Full Case Study\" use_background_color=\"off\" background_layout=\"light\" _builder_version=\"3.0.93\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/image-5.jpg\" _builder_version=\"3.0.92\" /][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Case Study Row\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#ffffff\" background_color_2=\"#ffffff\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/image-6.jpg\" _builder_version=\"3.0.99\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_cta admin_label=\"Title Paragraph &amp; CTA Button\" title=\"Reading Room Concepts for Nathan Moe\'s Home Interior\" button_url=\"#top\" button_text=\"Full Case Study\" use_background_color=\"off\" background_layout=\"light\" _builder_version=\"3.0.93\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Case Study Row\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#ffffff\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\"][et_pb_cta admin_label=\"Title Paragraph &amp; CTA Button\" title=\"Nathan Moe\'s Home Interior\" button_url=\"#top\" button_text=\"Full Case Study\" use_background_color=\"off\" background_layout=\"light\" _builder_version=\"3.0.93\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/image-9.jpg\" _builder_version=\"3.0.93\" /][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Case Study Row\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_2=\"#ffffff\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/image-8.jpg\" _builder_version=\"3.0.92\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_cta admin_label=\"Title Paragraph &amp; CTA Button\" title=\"Reading Room Design For Motrollo &amp; Co.\" button_url=\"#top\" button_text=\"Full Case Study\" use_background_color=\"off\" background_layout=\"light\" _builder_version=\"3.0.93\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Case Study Row\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#ffffff\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\"][et_pb_cta admin_label=\"Title Paragraph &amp; CTA Button\" title=\"Natasha\'s Cottage - Interior Design\" button_url=\"#top\" button_text=\"Full Case Study\" use_background_color=\"off\" background_layout=\"light\" _builder_version=\"3.0.93\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_border_radius_hover=\"0px\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/image-4-1.jpg\" _builder_version=\"3.0.92\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Projects", "", "inherit", "closed", "closed", "", "120-revision-v1", "", "", "2018-05-10 23:16:18", "2018-05-10 23:16:18", "", "120", "https://beyondink.alluredigitalmarketing.com.au/120-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("137", "1", "2018-05-16 10:40:44", "0000-00-00 00:00:00", "[et_pb_section bb_built=\"1\"][et_pb_row][/et_pb_row][/et_pb_section]", "Projects", "", "draft", "closed", "closed", "", "", "", "", "2018-05-16 10:40:44", "2018-05-16 10:40:44", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=137", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("138", "1", "2018-05-16 10:44:39", "2018-05-16 10:44:39", "", "Hahndorf Academy", "", "inherit", "open", "closed", "", "5-2", "", "", "2018-05-16 10:45:05", "2018-05-16 10:45:05", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("153", "1", "2018-05-17 10:12:07", "2018-05-17 10:12:07", "", "living_01", "", "inherit", "open", "closed", "", "living_01", "", "", "2018-05-17 10:12:07", "2018-05-17 10:12:07", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/living_01.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("154", "1", "2018-05-17 10:12:16", "2018-05-17 10:12:16", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.93\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#000000\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/living_01.jpg\" custom_padding=\"10%|0px|20%|0px\" next_background_color=\"#000000\"][et_pb_row admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>The Blog</h1>\r\nMauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"100px|0px|100px|0px\" prev_background_color=\"#000000\" next_background_color=\"#000000\"][et_pb_row admin_label=\"Blog Posts Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_blog fullwidth=\"off\" posts_number=\"15\" offset_number=\"0\" _builder_version=\"3.0.93\" header_level=\"h4\" header_font=\"Muli|600|||||||\" header_font_size=\"18px\" header_line_height=\"1.4em\" body_font=\"Muli||||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" meta_font=\"Muli|600|||||||\" meta_font_size=\"14px\" meta_text_color=\"rgba(0,0,0,0.3)\" pagination_font=\"Muli|700|||||||\" pagination_text_color=\"#f4583f\" pagination_line_height=\"1.7em\" border_width_all=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.93\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/section-bg-2.jpg\" background_position=\"bottom_center\" custom_padding=\"8%|0px|8%|0px\" prev_background_color=\"#000000\"][et_pb_row admin_label=\"Subscription Row\" custom_padding=\"|||\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Weekly Newsletter.\" use_background_color=\"off\" background_layout=\"light\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#1a1a1a\" button_border_color_hover=\"#1a1a1a\" button_border_radius_hover=\"0px\" use_focus_border_color=\"off\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. [/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]\r\n\r\nWe won\'t spam!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Residential", "", "inherit", "closed", "closed", "", "152-revision-v1", "", "", "2018-05-17 10:12:16", "2018-05-17 10:12:16", "", "152", "https://beyondink.alluredigitalmarketing.com.au/152-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("132", "1", "2018-05-10 23:21:15", "2018-05-10 23:21:15", "", "Murray Bridge Racing Club", "", "inherit", "open", "closed", "", "murray-bridge-racing-club-2", "", "", "2018-05-16 10:51:48", "2018-05-16 10:51:48", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Murray-Bridge-Racing-Club.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("133", "1", "2018-05-10 23:22:49", "2018-05-10 23:22:49", "[et_pb_section fb_built=\"1\" background_color=\"#e9f0f6\" admin_label=\"Header Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"10%|0px|100px|0px\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.92\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Projects</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_2=\"#ffffff\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Commercial\" button_url=\"#top\" button_text=\"Full Case Study\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#ffffff\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Residential\" button_url=\"#top\" button_text=\"Full Case Study\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Bridgewater-House.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#ffffff\" background_color_2=\"#ffffff\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/image-6.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Renovations\" button_url=\"#top\" button_text=\"Full Case Study\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#ffffff\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Coming Soon\" button_url=\"#top\" button_text=\"Full Case Study\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705-e1525939024788.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "Projects", "", "inherit", "closed", "closed", "", "120-revision-v1", "", "", "2018-05-10 23:22:49", "2018-05-10 23:22:49", "", "120", "https://beyondink.alluredigitalmarketing.com.au/120-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("140", "1", "2018-05-16 10:48:47", "2018-05-16 10:48:47", "", "Carrickalinga House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_1-800x533", "", "", "2018-05-16 10:49:12", "2018-05-16 10:49:12", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("141", "1", "2018-05-16 10:50:55", "2018-05-16 10:50:55", "", "Murray Bridge Racing Club", "", "inherit", "open", "closed", "", "front-entry-portal-dulux-gunmetal-kinetic-800x410", "", "", "2018-05-16 10:51:57", "2018-05-16 10:51:57", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Front-Entry-Portal-Dulux-Gunmetal-Kinetic-800x410.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("142", "1", "2018-05-16 10:53:58", "2018-05-16 10:53:58", "", "Front Entry Portal - Dulux Gunmetal Kinetic (800x410)", "", "inherit", "open", "closed", "", "front-entry-portal-dulux-gunmetal-kinetic-800x410-2", "", "", "2018-05-16 10:53:58", "2018-05-16 10:53:58", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Front-Entry-Portal-Dulux-Gunmetal-Kinetic-800x410-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("144", "1", "2018-05-16 11:05:23", "2018-05-16 11:05:23", "", "Murray Bridge Racing Club", "", "inherit", "open", "closed", "", "front-entry-portal-dulux-gunmetal-kinetic-2", "", "", "2018-05-16 11:05:36", "2018-05-16 11:05:36", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Front-Entry-Portal-Dulux-Gunmetal-Kinetic-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("143", "1", "2018-05-16 10:55:38", "2018-05-16 10:55:38", "[et_pb_section fb_built=\"1\" background_color=\"#e9f0f6\" admin_label=\"Header Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"10%|0px|100px|0px\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.92\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Projects</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_2=\"#ffffff\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Front-Entry-Portal-Dulux-Gunmetal-Kinetic-800x410-1.jpg\" _builder_version=\"3.0.106\" show_bottom_space=\"off\" custom_padding=\"|||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Commercial\" button_url=\"#top\" button_text=\"Full Case Study\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#ffffff\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Residential\" button_url=\"#top\" button_text=\"Full Case Study\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#ffffff\" background_color_2=\"#ffffff\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-2.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Renovations\" button_url=\"#top\" button_text=\"Full Case Study\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#ffffff\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Coming Soon\" button_url=\"#top\" button_text=\"Full Case Study\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705-e1525939024788.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "Projects", "", "inherit", "closed", "closed", "", "120-revision-v1", "", "", "2018-05-16 10:55:38", "2018-05-16 10:55:38", "", "120", "https://beyondink.alluredigitalmarketing.com.au/120-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("152", "1", "2018-05-17 10:12:16", "2018-05-17 10:12:16", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"194deg\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/IMG_6211-1280x853.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1143px\" custom_padding=\"0|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Residential Projects</h1>\r\n<span style=\"color: #ffffff;\">Designing and building beautiful homes in the Adelaide Hills area since 2006.</span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"41px|0px|50px|0px\" custom_margin=\"|||\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Bell-Crt-4-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/adelaide-hills-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"-2px|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/adelaide-hills-residence/\">Adelaide Hills Residence </a></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/aldgate-renovation/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/aldgate-renovation/\">Aldgate Renovation </a></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Battunga-Residence.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/battunga-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/battunga-residence/\">Battunga Residence</a></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6211-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/bridgewater-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/bridgewater-residence/\">Bridgewater Residence</a></span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"1px|0px|50px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/6.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/bridgewater-rammed-earth-renovation/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/bridgewater-rammed-earth-renovation/\">Bridgewater Rammed Earth Renovation</a></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/The-Latch-Atkinson-Rd-Crafers-West-5-800x532.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/crafers-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/crafers-residence/\">Crafers Residence</a></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Echunga-Residence.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/echunga-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/echunga-residence/\">Echunga Residence</a></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Jupiter-Creek-Residence.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/jupiter-creek-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/jupiter-creek-residence/\">Jupiter Creek Residence</a></span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|50px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence-6.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/kensington-gardens/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/kensington-gardens/\">Kensington Gardens Residence</a></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/IMG_0623-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/littlehampton-renovation-additions/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><a href=\"https://beyondink.alluredigitalmarketing.com.au/littlehampton-renovation-additions/\"><span style=\"font-size: 18px;\">Littlehampton Renovation and Additions</span><span style=\"font-size: 18px;\"> </span></a></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/14-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/totness-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/totness-residence/\">Totness Residence</a></span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Residential", "", "publish", "closed", "closed", "", "residential", "", "", "2018-07-24 11:42:13", "2018-07-24 11:42:13", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=152", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("147", "1", "2018-05-16 23:24:54", "2018-05-16 23:24:54", "[et_pb_section fb_built=\"1\" background_color=\"#e9f0f6\" admin_label=\"Header Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"10%|0px|100px|0px\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.92\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Projects</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_2=\"#ffffff\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Front-Entry-Portal-Dulux-Gunmetal-Kinetic-2.jpg\" _builder_version=\"3.0.106\" show_bottom_space=\"off\" custom_padding=\"|||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Commercial\" button_url=\"#top\" button_text=\"Discover more\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#ffffff\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Residential\" button_url=\"#top\" button_text=\"Discover more\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#ffffff\" background_color_2=\"#ffffff\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-2.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Renovations\" button_url=\"#top\" button_text=\"Discover more\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#ffffff\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Coming Soon\" button_url=\"#top\" button_text=\"Discover more\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/North-East-Corner-Dulux-Gunmetal-Kinetic-Sm.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "Projects", "", "inherit", "closed", "closed", "", "120-revision-v1", "", "", "2018-05-16 23:24:54", "2018-05-16 23:24:54", "", "120", "https://beyondink.alluredigitalmarketing.com.au/120-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("151", "1", "2018-05-16 23:30:30", "2018-05-16 23:30:30", " ", "", "", "publish", "closed", "closed", "", "151", "", "", "2018-07-30 02:30:40", "2018-07-30 02:30:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?p=151", "3", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("150", "1", "2018-05-16 23:30:16", "2018-05-16 23:30:16", "[et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_position=\"top_center\" custom_padding=\"0|0px|100px|0px\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_color=\"#f3f3f3\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Projects</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_2=\"#f3f3f3\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Front-Entry-Portal-Dulux-Gunmetal-Kinetic-2.jpg\" show_bottom_space=\"off\" _builder_version=\"3.0.106\" custom_padding=\"|||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Commercial\" button_url=\"#top\" button_text=\"Discover more\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#f3f3f3\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\" background_color_2=\"#f3f3f3\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Residential\" button_url=\"#top\" button_text=\"Discover more\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_2=\"#f3f3f3\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-2.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Renovations\" button_url=\"#top\" button_text=\"Discover more\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#f3f3f3\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Coming Soon\" button_url=\"#top\" button_text=\"Discover more\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/North-East-Corner-Dulux-Gunmetal-Kinetic-Sm.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "Projects", "", "inherit", "closed", "closed", "", "120-revision-v1", "", "", "2018-05-16 23:30:16", "2018-05-16 23:30:16", "", "120", "https://beyondink.alluredigitalmarketing.com.au/120-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("169", "1", "2018-05-17 10:51:44", "2018-05-17 10:51:44", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-exterior-4-of-6-800x535", "", "", "2018-05-17 10:51:56", "2018-05-17 10:51:56", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Exterior-4-of-6-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("172", "1", "2018-05-17 10:57:04", "2018-05-17 10:57:04", " ", "", "", "publish", "closed", "closed", "", "172", "", "", "2018-07-30 02:30:40", "2018-07-30 02:30:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?p=172", "13", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("173", "1", "2018-05-17 10:58:34", "2018-05-17 10:58:34", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Exterior-4-of-6-800x535.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Residential Projects</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"92px|0px|27px|0px\" admin_label=\"Blog Posts Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"156,158,159,163,161,160,170,169,162,164,165,166\" gallery_captions=\",,,,,,,,,,,\" posts_number=\"14\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.49)\" box_shadow_style_image=\"preset1\" box_shadow_blur_image=\"23px\" _builder_version=\"3.0.106\" title_font=\"||||||||\" title_text_color=\"#000000\" pagination_font=\"||||||||\" custom_margin=\"|||\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section]", "Projects Page", "", "publish", "closed", "closed", "", "projects-page", "", "", "2018-05-17 10:58:34", "2018-05-17 10:58:34", "", "0", "https://beyondink.alluredigitalmarketing.com.au/et_pb_layout/projects-page/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("170", "1", "2018-05-17 10:55:11", "2018-05-17 10:55:11", "", "Carrickalinga House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_3-800x533", "", "", "2018-05-17 10:55:28", "2018-05-17 10:55:28", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Bennett-Street-Carrickalinga_HighRes_4K_3-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("174", "1", "2018-05-17 10:58:38", "2018-05-17 10:58:38", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Exterior-4-of-6-800x535.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Residential Projects</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"92px|0px|27px|0px\" admin_label=\"Blog Posts Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"156,158,159,163,161,160,170,169,162,164,165,166\" gallery_captions=\",,,,,,,,,,,\" posts_number=\"14\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.49)\" box_shadow_style_image=\"preset1\" box_shadow_blur_image=\"23px\" _builder_version=\"3.0.106\" title_font=\"||||||||\" title_text_color=\"#000000\" pagination_font=\"||||||||\" custom_margin=\"|||\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section]", "Residential", "", "inherit", "closed", "closed", "", "152-revision-v1", "", "", "2018-05-17 10:58:38", "2018-05-17 10:58:38", "", "152", "https://beyondink.alluredigitalmarketing.com.au/152-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("156", "1", "2018-05-17 10:14:56", "2018-05-17 10:14:56", "", "Adelaide Hills Residence", "", "inherit", "open", "closed", "", "155971_443885748980411_2052228216_n", "", "", "2018-05-17 10:45:09", "2018-05-17 10:45:09", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/155971_443885748980411_2052228216_n.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("159", "1", "2018-05-17 10:23:33", "2018-05-17 10:23:33", "", "Battunga Residence", "", "inherit", "open", "closed", "", "425573_318529888182665_1787921071_n", "", "", "2018-05-17 10:24:16", "2018-05-17 10:24:16", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/425573_318529888182665_1787921071_n.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("158", "1", "2018-05-17 10:21:36", "2018-05-17 10:21:36", "", "Aldgate House Renovation", "", "inherit", "open", "closed", "", "5-800x533", "", "", "2018-05-17 10:36:56", "2018-05-17 10:36:56", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("160", "1", "2018-05-17 10:26:36", "2018-05-17 10:26:36", "", "Bridgewater Rammed Earth Renovation", "", "inherit", "open", "closed", "", "6", "", "", "2018-05-17 10:26:55", "2018-05-17 10:26:55", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/6.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("161", "1", "2018-05-17 10:29:59", "2018-05-17 10:29:59", "", "Crafers Residence", "", "inherit", "open", "closed", "", "lt-1-1p2147-1511431005-rsd-800x533", "", "", "2018-05-17 10:30:25", "2018-05-17 10:30:25", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/lt-1-1P2147-1511431005-rsd-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("162", "1", "2018-05-17 10:32:40", "2018-05-17 10:32:40", "", "Echunga Residence", "", "inherit", "open", "closed", "", "305653_359854987383488_1833829054_n", "", "", "2018-05-17 10:37:10", "2018-05-17 10:37:10", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/305653_359854987383488_1833829054_n.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("163", "1", "2018-05-17 10:34:04", "2018-05-17 10:34:04", "", "Adelaide Hills Residence", "", "inherit", "open", "closed", "", "bell-crt-4", "", "", "2018-05-17 10:37:00", "2018-05-17 10:37:00", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Bell-Crt-4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("165", "1", "2018-05-17 10:40:36", "2018-05-17 10:40:36", "", "Littlehampton Renovation and Additions", "", "inherit", "open", "closed", "", "img_0623-800x533", "", "", "2018-05-17 10:40:59", "2018-05-17 10:40:59", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/IMG_0623-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("164", "1", "2018-05-17 10:36:28", "2018-05-17 10:36:28", "", "Jupiter Creek Country Residence", "", "inherit", "open", "closed", "", "399949_317440688291585_1511337278_n", "", "", "2018-05-17 10:37:35", "2018-05-17 10:37:35", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/399949_317440688291585_1511337278_n.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("171", "1", "2018-05-17 10:56:37", "2018-05-17 10:56:37", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Exterior-4-of-6-800x535.jpg\" custom_padding=\"10%|0px|123px|0px\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\"][et_pb_row admin_label=\"Title Row\" _builder_version=\"3.0.92\" custom_padding=\"27px|0px|11px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Residential Projects</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row admin_label=\"Blog Posts Row\" _builder_version=\"3.0.92\" custom_padding=\"92px|0px|27px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"156,158,159,163,161,160,170,169,162,164,165,166\" gallery_captions=\",,,,,,,,,,,\" posts_number=\"14\" _builder_version=\"3.0.106\" hover_overlay_color=\"rgba(255,255,255,0.49)\" zoom_icon_color=\"#000000\" box_shadow_style_image=\"preset1\" box_shadow_blur_image=\"23px\" title_font=\"||||||||\" title_text_color=\"#000000\" pagination_font=\"||||||||\" custom_margin=\"|||\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section]", "Residential", "", "inherit", "closed", "closed", "", "152-revision-v1", "", "", "2018-05-17 10:56:37", "2018-05-17 10:56:37", "", "152", "https://beyondink.alluredigitalmarketing.com.au/152-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("167", "1", "2018-05-17 10:48:30", "2018-05-17 10:48:30", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.93\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#000000\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/living_01.jpg\" custom_padding=\"10%|0px|20%|0px\"][et_pb_row admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>The Blog</h1>\r\nMauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row admin_label=\"Blog Posts Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"156,158,159,163,161,160,162,164,165,166\" gallery_captions=\",,,,,,,,,\" posts_number=\"10\" _builder_version=\"3.0.106\" hover_overlay_color=\"rgba(255,255,255,0.49)\" zoom_icon_color=\"#000000\" box_shadow_style_image=\"preset1\" box_shadow_blur_image=\"23px\" title_font=\"||||||||\" title_text_color=\"#000000\" pagination_font=\"||||||||\" custom_margin=\"|||\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.93\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/section-bg-2.jpg\" background_position=\"bottom_center\" custom_padding=\"8%|0px|8%|0px\"][et_pb_row custom_padding=\"|||\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Weekly Newsletter.\" use_background_color=\"off\" background_layout=\"light\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#1a1a1a\" button_border_color_hover=\"#1a1a1a\" button_border_radius_hover=\"0px\" use_focus_border_color=\"off\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. [/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]We won\'t spam!\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Residential", "", "inherit", "closed", "closed", "", "152-revision-v1", "", "", "2018-05-17 10:48:30", "2018-05-17 10:48:30", "", "152", "https://beyondink.alluredigitalmarketing.com.au/152-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("175", "1", "2018-05-17 10:59:24", "2018-05-17 10:59:24", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"194deg\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705-e1525939024788.jpg\" custom_padding=\"9.8%|0px|123px|0px\"][et_pb_row custom_padding=\"0|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Commercial Projects</h1>\n<span style=\"color: #ffffff;\">We specialise in major regional developments - from design and construction to entire management of your project.</span> [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"50px|0px|50px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Lane-Winery.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-lane-vineyard/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/battunga-residence/https://beyondink.alluredigitalmarketing.com.au/wolf-blass-gallery-and-museum/\">The Lane Winery</a></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Barker-Plaza-Entrance-800x534.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/barker-plaza/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/barker-plaza/\">Barker Plaza Shopping Centre</a></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/3__MCOLES__MKC5307-1024x684.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-haus-cafebarkitchen/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/the-haus-cafebarkitchen/\">The Haus Hahndorf</a></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Studio-Apartments.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-manna-apartments-2/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/the-manna-apartments-2/\">The Haus Studio Apartments</a></span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||50px|\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/K1-Winery-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/k1-winery/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/k1-winery/\">K1 Winery</a></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2018-The-Manna-Of-Hahndorf-Indulgence-Spa-Suites-1-800x534.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-manna-motel-of-hahndorf/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/k1-winery/\">The Manna Motel of Hahndorf</a></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Inavogue-Showroom-2-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/inavogue-showroom/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/k1-winery/\">Inavogue Showroom</a></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Pulteney-Plaza-Apartments-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/pulteney-plaza-adelaide/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/pulteney-plaza-adelaide/\">Pulteney Plaza Apartments</a></span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|46px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Rivercorp-Monarto-Apple-Processing-Plant.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/rivercorp-monarto-apple-processing-facility/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/rivercorp-monarto-apple-processing-facility/\">Rivercorp Monarto Apple Processing Facility</a></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Elders-Strathalbyn-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/elders-strathalbyn/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/elders-strathalbyn/\">Elders Strathalbyn</a></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0|59px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"COMING SOON\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/coming-soon/\" button_text=\"Discover our Work in Progress\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"||||||||\" header_font_size=\"44px\" header_text_shadow_style=\"preset3\" body_font=\"||||||||\" max_width_tablet=\"74%\" max_width_phone=\"91%\" max_width_last_edited=\"on|phone\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_color=\"#ffffff\" button_font=\"||||||||\" button_use_icon=\"off\" button_bg_color_hover=\"rgba(255,255,255,0.05)\" box_shadow_style_button=\"preset3\" box_shadow_style=\"preset3\"][/et_pb_cta][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/coming-soon/\" align=\"center\" _builder_version=\"3.0.106\" max_width=\"60%\" custom_padding=\"30px||0px|\" custom_margin=\"|||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "Commercial", "", "publish", "closed", "closed", "", "commercial", "", "", "2018-07-24 11:39:19", "2018-07-24 11:39:19", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=175", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("176", "1", "2018-05-17 10:59:24", "2018-05-17 10:59:24", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Exterior-4-of-6-800x535.jpg\" custom_padding=\"10%|0px|123px|0px\" next_background_color=\"#000000\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"27px|0px|11px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Residential Projects</h1>\r\nMauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\" prev_background_color=\"#000000\"][et_pb_row admin_label=\"Blog Posts Row\" custom_padding=\"92px|0px|27px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"156,158,159,163,161,160,170,169,162,164,165,166\" gallery_captions=\",,,,,,,,,,,\" posts_number=\"14\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.49)\" box_shadow_style_image=\"preset1\" box_shadow_blur_image=\"23px\" _builder_version=\"3.0.106\" title_font=\"||||||||\" title_text_color=\"#000000\" pagination_font=\"||||||||\" custom_margin=\"|||\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Commercial", "", "inherit", "closed", "closed", "", "175-revision-v1", "", "", "2018-05-17 10:59:24", "2018-05-17 10:59:24", "", "175", "https://beyondink.alluredigitalmarketing.com.au/175-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("177", "1", "2018-05-17 11:00:37", "2018-05-17 11:00:37", "", "The Lane Winery", "", "inherit", "open", "closed", "", "the-lane-feb-2015-800x340", "", "", "2018-05-17 11:00:56", "2018-05-17 11:00:56", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/The-Lane-Feb-2015-800x340.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("191", "1", "2018-05-17 11:15:24", "2018-05-17 11:15:24", " ", "", "", "publish", "closed", "closed", "", "191", "", "", "2018-07-30 02:30:40", "2018-07-30 02:30:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?p=191", "4", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("192", "1", "2018-05-17 11:17:43", "2018-05-17 11:17:43", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-exterior-3-of-6-800x535", "", "", "2018-05-17 11:17:52", "2018-05-17 11:17:52", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Exterior-3-of-6-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("193", "1", "2018-05-17 11:18:08", "2018-05-17 11:18:08", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Exterior-3-of-6-800x535.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Residential Projects</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"92px|0px|27px|0px\" admin_label=\"Blog Posts Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"156,158,159,163,161,160,170,169,162,164,165,166\" gallery_captions=\",,,,,,,,,,,\" posts_number=\"14\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.49)\" box_shadow_style_image=\"preset1\" box_shadow_blur_image=\"23px\" _builder_version=\"3.0.106\" title_font=\"||||||||\" title_text_color=\"#000000\" pagination_font=\"||||||||\" custom_margin=\"|||\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section]", "Residential", "", "inherit", "closed", "closed", "", "152-revision-v1", "", "", "2018-05-17 11:18:08", "2018-05-17 11:18:08", "", "152", "https://beyondink.alluredigitalmarketing.com.au/152-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("179", "1", "2018-05-17 11:03:49", "2018-05-17 11:03:49", "", "The Lane Winery", "", "inherit", "open", "closed", "", "img_3605-800x600", "", "", "2018-05-17 11:11:57", "2018-05-17 11:11:57", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/IMG_3605-800x600.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("180", "1", "2018-05-17 11:04:06", "2018-05-17 11:04:06", "", "K1 Winery", "", "inherit", "open", "closed", "", "k1-2", "", "", "2018-05-17 11:11:51", "2018-05-17 11:11:51", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/K1-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("181", "1", "2018-05-17 11:04:26", "2018-05-17 11:04:26", "", "The Haus Cafe+Bar+Kitchen", "", "inherit", "open", "closed", "", "5-2-2", "", "", "2018-05-17 11:13:07", "2018-05-17 11:13:07", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-2-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("182", "1", "2018-05-17 11:05:36", "2018-05-17 11:05:36", "", "Barker Plaza Shopping Centre", "", "inherit", "open", "closed", "", "barker-plaza-entrance-800x534", "", "", "2018-05-17 11:12:47", "2018-05-17 11:12:47", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Barker-Plaza-Entrance-800x534.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("183", "1", "2018-05-17 11:06:12", "2018-05-17 11:06:12", "", "Inavogue Showroom", "", "inherit", "open", "closed", "", "img_2879", "", "", "2018-05-17 11:12:35", "2018-05-17 11:12:35", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/img_2879.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("184", "1", "2018-05-17 11:06:54", "2018-05-17 11:06:54", "", "The Haus Studio Apartments", "", "inherit", "open", "closed", "", "img_26711", "", "", "2018-05-17 11:12:27", "2018-05-17 11:12:27", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/img_26711.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("185", "1", "2018-05-17 11:07:42", "2018-05-17 11:07:42", "", "The Manna Motel of Hahndorf", "", "inherit", "open", "closed", "", "55708_165645590125507_7049646_o", "", "", "2018-05-17 11:12:19", "2018-05-17 11:12:19", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/55708_165645590125507_7049646_o.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("186", "1", "2018-05-17 11:08:58", "2018-05-17 11:08:58", "", "Pulteney Plaza Apartments", "", "inherit", "open", "closed", "", "pulteney-plaza-800x600", "", "", "2018-05-17 11:13:20", "2018-05-17 11:13:20", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Pulteney-Plaza-800x600.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("187", "1", "2018-05-17 11:09:18", "2018-05-17 11:09:18", "", "Elders Strathalbyn", "", "inherit", "open", "closed", "", "imported-08-02-2015-1087", "", "", "2018-05-17 11:11:40", "2018-05-17 11:11:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/imported-08-02-2015-1087.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("188", "1", "2018-05-17 11:10:24", "2018-05-17 11:10:24", "", "Rivercorp Monarto Apple Processing Facility", "", "inherit", "open", "closed", "", "img_3053", "", "", "2018-05-17 11:11:45", "2018-05-17 11:11:45", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/img_3053.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("189", "1", "2018-05-17 11:14:24", "2018-05-17 11:14:24", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/North-East-Corner-Dulux-Gunmetal-Kinetic.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Commercial Projects</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"92px|0px|27px|0px\" admin_label=\"Blog Posts Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"179,182,181,184,180,185,183,186,188,187\" gallery_captions=\",,,,,,,,,\" posts_number=\"14\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.49)\" box_shadow_style_image=\"preset1\" box_shadow_blur_image=\"23px\" _builder_version=\"3.0.106\" title_font=\"||||||||\" title_text_color=\"#000000\" pagination_font=\"||||||||\" custom_margin=\"|||\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section]", "Commercial", "", "inherit", "closed", "closed", "", "175-revision-v1", "", "", "2018-05-17 11:14:24", "2018-05-17 11:14:24", "", "175", "https://beyondink.alluredigitalmarketing.com.au/175-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("195", "1", "2018-05-17 11:19:13", "2018-05-17 11:19:13", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Coming Soon</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"27px|0|59px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/murray-bridge-racing-club/\" align=\"center\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"-50px|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p> </p>\n<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/murray-bridge-racing-club/\">Racing at Gifford Hill - Murray Bridge Racing Club</a></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|50px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Beyond-Ink-Office.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/beyond-ink-office/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/chapmans-meatworks-kloses-supermarket-nairne/\">Beyond Ink Office</a></span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Duttons.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/duttons-service-centre/https://beyondink.alluredigitalmarketing.com.au/mt-barker-commercial-premises/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/mt-barker-commercial-premises/\">Mt Barker Commercial Premises</a></span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|50px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Nairne.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/chapmans-meatworks-kloses-supermarket-nairne/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/chapmans-meatworks-kloses-supermarket-nairne/\">Klose\'s Supermarket Nairne</a></span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/CAMBRIDGE-WOODSIDE-SUPERMARKET-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/aldgate-renovation/https://beyondink.alluredigitalmarketing.com.au/kloses-supermarket-woodside/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/aldgate-renovation/https://beyondink.alluredigitalmarketing.com.au/kloses-supermarket-woodside/\">Klose\'s Supermarket Woodside</a></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|50px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Wolf-Blass.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/battunga-residence/https://beyondink.alluredigitalmarketing.com.au/wolf-blass-gallery-and-museum/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/battunga-residence/https://beyondink.alluredigitalmarketing.com.au/wolf-blass-gallery-and-museum/\">Wolf Blass Gallery and Museum</a></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Coming Soon", "", "publish", "closed", "closed", "", "coming-soon", "", "", "2018-07-26 10:02:11", "2018-07-26 10:02:11", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=195", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("196", "1", "2018-05-17 11:19:13", "2018-05-17 11:19:13", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Exterior-4-of-6-800x535.jpg\" custom_padding=\"10%|0px|123px|0px\" next_background_color=\"#000000\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"27px|0px|11px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Residential Projects</h1>\r\nMauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\" prev_background_color=\"#000000\"][et_pb_row admin_label=\"Blog Posts Row\" custom_padding=\"92px|0px|27px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"156,158,159,163,161,160,170,169,162,164,165,166\" gallery_captions=\",,,,,,,,,,,\" posts_number=\"14\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.49)\" box_shadow_style_image=\"preset1\" box_shadow_blur_image=\"23px\" _builder_version=\"3.0.106\" title_font=\"||||||||\" title_text_color=\"#000000\" pagination_font=\"||||||||\" custom_margin=\"|||\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Coming Soon", "", "inherit", "closed", "closed", "", "195-revision-v1", "", "", "2018-05-17 11:19:13", "2018-05-17 11:19:13", "", "195", "https://beyondink.alluredigitalmarketing.com.au/195-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("205", "1", "2018-05-17 11:30:43", "2018-05-17 11:30:43", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Exterior-4-of-6-800x535.jpg\" custom_padding=\"10%|0px|123px|0px\" next_background_color=\"#000000\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"27px|0px|11px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Residential Projects</h1>\r\nMauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\" prev_background_color=\"#000000\"][et_pb_row admin_label=\"Blog Posts Row\" custom_padding=\"92px|0px|27px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"156,158,159,163,161,160,170,169,162,164,165,166\" gallery_captions=\",,,,,,,,,,,\" posts_number=\"14\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.49)\" box_shadow_style_image=\"preset1\" box_shadow_blur_image=\"23px\" _builder_version=\"3.0.106\" title_font=\"||||||||\" title_text_color=\"#000000\" pagination_font=\"||||||||\" custom_margin=\"|||\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Renovations", "", "inherit", "closed", "closed", "", "204-revision-v1", "", "", "2018-05-17 11:30:43", "2018-05-17 11:30:43", "", "204", "https://beyondink.alluredigitalmarketing.com.au/204-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("199", "1", "2018-05-17 11:23:38", "2018-05-17 11:23:38", "", "Murray Bridge Racing Club", "", "inherit", "open", "closed", "", "south-west-corner-2-800x441", "", "", "2018-05-17 11:23:56", "2018-05-17 11:23:56", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("204", "1", "2018-05-17 11:30:43", "2018-05-17 11:30:43", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Renovations</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"50px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0182-800x533-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/hahndorf-academy/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/hahndorf-academy/\">Hahndorf Academy</a></span></p>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6211-800x533-3.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/skilly-hills-function-centre-restoration-project/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/skilly-hills-function-centre-restoration-project/\">Skilly Hills Function Centre and Renovation Project</a></span></p>\n<p><a href=\"https://beyondink.alluredigitalmarketing.com.au/skilly-hills-function-centre-restoration-project/\"> </a></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Renovations", "", "publish", "closed", "closed", "", "restorations", "", "", "2018-07-24 11:43:01", "2018-07-24 11:43:01", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=204", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("200", "1", "2018-05-17 11:26:14", "2018-05-17 11:26:14", "", "Murray Bridge Racing Club Bar", "", "inherit", "open", "closed", "", "bar-1-800x362", "", "", "2018-05-17 11:26:27", "2018-05-17 11:26:27", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/BAR-1-800x362.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("201", "1", "2018-05-17 11:27:45", "2018-05-17 11:27:45", "", "Murray Bridge Racing Club Bar Main Foyer", "", "inherit", "open", "closed", "", "main-foyer-800x480", "", "", "2018-05-17 11:27:58", "2018-05-17 11:27:58", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Main-Foyer-800x480.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("203", "1", "2018-05-17 11:29:16", "2018-05-17 11:29:16", " ", "", "", "publish", "closed", "closed", "", "203", "", "", "2018-07-30 02:30:40", "2018-07-30 02:30:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?p=203", "28", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("753", "1", "2018-06-11 00:59:10", "2018-06-11 00:59:10", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Coming Soon</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"92px|0px|27px|0px\" admin_label=\"Blog Posts Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" align=\"center\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Front-Entry-Portal-Dulux-Gunmetal-Kinetic-800x410.jpg\" align=\"center\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/BAR-1-800x362.jpg\" align=\"center\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Main-Foyer-800x480.jpg\" align=\"center\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "Coming Soon", "", "inherit", "closed", "closed", "", "195-revision-v1", "", "", "2018-06-11 00:59:10", "2018-06-11 00:59:10", "", "195", "https://beyondink.alluredigitalmarketing.com.au/195-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("202", "1", "2018-05-17 11:28:32", "2018-05-17 11:28:32", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/North-East-Corner-Dulux-Gunmetal-Kinetic.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Coming Soon</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"92px|0px|27px|0px\" admin_label=\"Blog Posts Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" _builder_version=\"3.0.106\" align=\"center\"][/et_pb_image][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Front-Entry-Portal-Dulux-Gunmetal-Kinetic-800x410.jpg\" _builder_version=\"3.0.106\" align=\"center\"][/et_pb_image][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/BAR-1-800x362.jpg\" _builder_version=\"3.0.106\" align=\"center\"][/et_pb_image][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Main-Foyer-800x480.jpg\" _builder_version=\"3.0.106\" align=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "Coming Soon", "", "inherit", "closed", "closed", "", "195-revision-v1", "", "", "2018-05-17 11:28:32", "2018-05-17 11:28:32", "", "195", "https://beyondink.alluredigitalmarketing.com.au/195-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("210", "1", "2018-05-17 11:40:19", "2018-05-17 11:40:19", " ", "", "", "publish", "closed", "closed", "", "210", "", "", "2018-07-30 02:30:40", "2018-07-30 02:30:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?p=210", "25", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("211", "1", "2018-05-17 11:42:56", "2018-05-17 11:42:56", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"5deg\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/North-East-Corner-Dulux-Gunmetal-Kinetic-1280x406.jpg\" custom_padding=\"2.2%|0px|94px|0px\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1983px\" custom_padding=\"76px|0px|12px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>About Us</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Intro Section\" _builder_version=\"3.0.92\" custom_padding=\"16px|0px|0|15px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"25px|0px|0|0px\" admin_label=\"Intro Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1400px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h1><strong>Design innovation. Building Excellence.</strong></h1>\r\n<span style=\"font-size: 18px;\">Established in 2006, we\'re a boutique design and construction company known for progressive and innovative design. </span>\r\n\r\n<span style=\"font-size: 18px;\">Our specialty is creating major regional projects which add value and vibrancy to communities. </span>\r\n\r\n<span style=\"font-size: 18px;\">Regardless of the size of the project - whether it be a renovation or extension, or a large-scale build - our streamlined budget management system ensures peace of mind for our clients from beginning to end.</span>\r\n\r\nOur recent projects include the design of the Wolf Blass Gallery and Museum in Hahndorf’s Main Street; and the redesign of the new world-class Murray Bridge Racing Club.\r\n\r\nOther past projects include landmark destinations such as The Manna Hotel, The Lane Winery, The Haus Restaurant, and Barker Plaza Shopping Centre.\r[/et_pb_text][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Commercial Projects\" url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Kensingtons-Garden-Residence.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\" animation_style=\"fade\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Residential Projects\" url=\"https://beyondink.alluredigitalmarketing.com.au/residential/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\" animation_style=\"fade\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Renovations\" url=\"https://beyondink.alluredigitalmarketing.com.au/restorations/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Hahndorf-Academy.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\" animation_style=\"fade\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Coming Soon\" url=\"https://beyondink.alluredigitalmarketing.com.au/coming-soon/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Murray-Bridge-Racing-Club.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\" animation_style=\"fade\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "publish", "closed", "closed", "", "about-us", "", "", "2018-07-24 12:15:06", "2018-07-24 12:15:06", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=211", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("779", "1", "2018-06-11 04:11:27", "2018-06-11 04:11:27", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Our Projects</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_position=\"top_center\" custom_padding=\"0|0px|26px|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.106\"][/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"25px|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_2=\"#f3f3f3\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Front-Entry-Portal-Dulux-Gunmetal-Kinetic-2.jpg\" show_bottom_space=\"off\" _builder_version=\"3.0.106\" custom_padding=\"|||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Commercial Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/\" button_text=\"Discover Commercial Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]<p><span>Our commercial portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#f3f3f3\" background_color_2=\"#f3f3f3\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Residential Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/residential/\" button_text=\"Discover Residential Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_2=\"#f3f3f3\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-2.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Renovations\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/restorations/\" button_text=\"Discover Renovation Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#f3f3f3\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Coming Soon\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/coming-soon/\" button_text=\"Discover Work In Progress\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/North-East-Corner-Dulux-Gunmetal-Kinetic-Sm.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "Projects", "", "inherit", "closed", "closed", "", "120-revision-v1", "", "", "2018-06-11 04:11:27", "2018-06-11 04:11:27", "", "120", "https://beyondink.alluredigitalmarketing.com.au/120-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("208", "1", "2018-05-17 11:36:07", "2018-05-17 11:36:07", "", "Skilly Hills Function Centre and Restoration Project", "", "inherit", "open", "closed", "", "skilly-hills-1-2", "", "", "2018-05-17 11:36:34", "2018-05-17 11:36:34", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Skilly-Hills-1-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("207", "1", "2018-05-17 11:34:51", "2018-05-17 11:34:51", "", "Hahndorf Academy", "", "inherit", "open", "closed", "", "img_0191-800x533", "", "", "2018-05-17 11:35:16", "2018-05-17 11:35:16", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/IMG_0191-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("209", "1", "2018-05-17 11:39:57", "2018-05-17 11:39:57", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" custom_padding=\"|0px||0px\" background_color=\"rgba(0,0,0,0)\" custom_margin=\"-25px||-25px|\" custom_margin_last_edited=\"off|desktop\"][et_pb_row custom_padding=\"20px|0px|19px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Renovations</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"92px|0px|27px|0px\" admin_label=\"Blog Posts Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"207,208\" gallery_captions=\",\" posts_number=\"2\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.49)\" box_shadow_style_image=\"preset1\" box_shadow_blur_image=\"23px\" _builder_version=\"3.0.106\" title_font=\"||||||||\" title_text_color=\"#000000\" pagination_font=\"||||||||\" custom_margin=\"|||\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section]", "Renovations", "", "inherit", "closed", "closed", "", "204-revision-v1", "", "", "2018-05-17 11:39:57", "2018-05-17 11:39:57", "", "204", "https://beyondink.alluredigitalmarketing.com.au/204-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("786", "1", "2018-06-11 04:38:29", "2018-06-11 04:38:29", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Haus-2.png\" custom_margin=\"|||\" custom_padding=\"0||0|\"][et_pb_row custom_padding=\"38px|0px|3px|0px\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" admin_label=\"Header Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"About Us\" button_url=\"#top\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"rgba(244,88,63,0)\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#f4583f\" button_border_color_hover=\"rgba(244,88,63,0)\" button_border_radius_hover=\"0px\" animation_style=\"fade\"]<p><span style=\"color: #ffffff;\">Established in 2006, we specialise in commercial and residential property design and construction.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Intro Section\" _builder_version=\"3.0.92\" custom_padding=\"16px|0px|34px|0px\"][et_pb_row custom_padding=\"25px|0px|5px|0px\" admin_label=\"Intro Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>Design innovation.<br />Building Excellence.</h2>\n<p><span style=\"font-size: 18px;\">Known for our progressive and innovative design, we specialise in major regional projects which add value and vibrancy to communities. And regardless of the size of the project - whether it be a renovation or extension, or a large-scale build; our streamlined budget management system ensures peace of mind for our clients from beginning to end.</span></p>\n<p>Our recent projects include the design of the Wolf Blass Gallery and Museum in Hahndorf’s Main Street; and the redesign of the new world-class Murray Bridge Racing Club.</p>\n<p>Other past projects include landmark destinations such as The Manna Hotel, The Lane Winery, The Haus Restaurant, and Barker Plaza Shopping Centre.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "closed", "closed", "", "211-revision-v1", "", "", "2018-06-11 04:38:29", "2018-06-11 04:38:29", "", "211", "https://beyondink.alluredigitalmarketing.com.au/211-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("220", "1", "2018-05-17 11:42:56", "2018-05-17 11:42:56", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.93\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#e9f0f6\" background_color_gradient_end=\"rgba(233,240,246,0.2)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/header-bg-2-2.jpg\" custom_margin=\"|||\" custom_padding=\"10%||20%|\" next_background_color=\"#000000\"][et_pb_row admin_label=\"Header Row\" custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Heading, Subheading &amp; Button\" title=\"A Team of Passionate Interior Designers.\" button_url=\"#top\" button_text=\"Meet The Team\" use_background_color=\"off\" background_layout=\"light\" _builder_version=\"3.0.93\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"rgba(244,88,63,0)\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#f4583f\" button_border_color_hover=\"rgba(244,88,63,0)\" button_border_radius_hover=\"0px\" animation_style=\"fade\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est. [/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Intro Section\" _builder_version=\"3.0.92\" custom_padding=\"100px|0px|100px|0px\" prev_background_color=\"#000000\" next_background_color=\"#000000\"][et_pb_row admin_label=\"Intro Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]\r\n<h2>We don\'t only make things beautiful. We make them work great as well.</h2>\r\nLorem 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. Lorem ipsum dolor sit amet\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Story Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\" prev_background_color=\"#000000\" next_background_color=\"#000000\"][et_pb_row admin_label=\"Our Story Row\" make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1a1a1a\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Title\" background_layout=\"dark\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_font_size_last_edited=\"on|desktop\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_text_color=\"#ffffff\" header_2_line_height=\"1.4em\" max_width=\"600px\" max_width_phone=\"100%\" max_width_last_edited=\"on|tablet\" module_alignment=\"right\" custom_margin=\"|||\" custom_padding=\"100px|60px|100px|60px\" custom_padding_last_edited=\"off|desktop\"]\r\n<h2>Our Story</h2>\r\nMauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/image-1.jpg\" _builder_version=\"3.0.93\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"3.0.93\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/header-bg-2-1.jpg\" background_position=\"bottom_right\" custom_padding=\"0px|0px|0px|0px\" prev_background_color=\"#000000\" next_background_color=\"#000000\"][et_pb_row admin_label=\"Video Row\" make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|400px|0px\" custom_margin=\"|||\" background_color_1=\"#1a1a1a\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\"][et_pb_video src_webm=\"https://www.youtube.com/watch?v=FkQuawiGWUw\" image_src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/section-bg.jpg\" _builder_version=\"3.0.93\" max_width=\"600px\" max_width_last_edited=\"on|phone\" module_alignment=\"right\" /][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Design Process Section\" _builder_version=\"3.0.92\" custom_padding=\"100px|0px|250px|0px\" prev_background_color=\"#000000\" next_background_color=\"#000000\"][et_pb_row admin_label=\"Design Process Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_text_align=\"center\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]\r\n<h2>Our Design Process</h2>\r\nMauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Process\" title=\"Research\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/number-icons_1.png\" image_max_width=\"38px\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Process\" title=\"Design\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/number-icons_2.png\" image_max_width=\"38px\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Process\" title=\"Build\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/number-icons_3.png\" image_max_width=\"38px\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"About Section\" _builder_version=\"3.0.93\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/image-3-1.jpg\" custom_padding=\"0px|0px|100px|0px\" prev_background_color=\"#000000\"][et_pb_row admin_label=\"Texts &amp; Numbers Row\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_cta admin_label=\"Title &amp; Paragraph\" title=\"Home Workstation\" background_color=\"#1a1a1a\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_margin=\"-150px|||\" custom_padding=\"300px|60px|60px|60px\" custom_padding_tablet=\"60px|||\" custom_padding_last_edited=\"on|tablet\"]\r\n\r\nMauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero.\r\n\r\n[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter title=\"Projects\" number=\"42\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.93\" title_level=\"h2\" title_font=\"Muli|600|||||||\" title_font_size=\"18px\" title_text_color=\"#ffffff\" title_line_height=\"1.8em\" number_font=\"Muli|700|||||||\" number_font_size=\"50px\" number_text_color=\"#ffffff\" number_line_height=\"1.4em\" background_color=\"#f4583f\" text_orientation=\"left\" custom_padding=\"110px|30px|30px|30px\" /][et_pb_number_counter title=\"Clients\" number=\"58\" percent_sign=\"off\" _builder_version=\"3.0.92\" title_level=\"h2\" title_font=\"Muli|600|||||||\" title_font_size=\"18px\" title_text_color=\"#737373\" title_line_height=\"1.7em\" number_font=\"Muli|700|||||||\" number_font_size=\"50px\" number_text_color=\"#1a1a1a\" number_line_height=\"1.4em\" background_color=\"#ffffff\" text_orientation=\"left\" custom_margin=\"30px|||\" custom_padding=\"70px|30px|30px|30px\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "closed", "closed", "", "211-revision-v1", "", "", "2018-05-17 11:42:56", "2018-05-17 11:42:56", "", "211", "https://beyondink.alluredigitalmarketing.com.au/211-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("223", "1", "2018-05-17 11:50:53", "2018-05-17 11:50:53", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.47)\" background_color_gradient_end=\"rgba(233,240,246,0.2)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/lt-1-1P2147-1511431005-rsd-800x533.jpg\" custom_margin=\"|||\" custom_padding=\"10%||9.6%|\" background_color_gradient_end_position=\"67%\"][et_pb_row custom_padding=\"27px|0px|3px|0px\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" admin_label=\"Header Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"About Us\" button_url=\"#top\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"rgba(244,88,63,0)\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#f4583f\" button_border_color_hover=\"rgba(244,88,63,0)\" button_border_radius_hover=\"0px\" animation_style=\"fade\"]<p>We\'re a boutique design and construction company.</p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Intro Section\" _builder_version=\"3.0.92\" custom_padding=\"56px|0px|60px|0px\"][et_pb_row admin_label=\"Intro Row\" _builder_version=\"3.0.92\" custom_padding=\"25px|0px|27px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>Design innovation.<br />Building Excellence.</h2>\n<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. Lorem ipsum dolor sit amet</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Our Story Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1a1a1a\" admin_label=\"Our Story Row\" _builder_version=\"3.0.106\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#1a1a1a\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_font_size_last_edited=\"on|desktop\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_text_color=\"#ffffff\" header_2_line_height=\"1.4em\" max_width=\"600px\" max_width_phone=\"100%\" max_width_last_edited=\"on|tablet\" module_alignment=\"right\" custom_margin=\"|||\" custom_padding=\"100px|60px|100px|60px\" custom_padding_last_edited=\"off|desktop\"]<h2>Our Story</h2>\r\nMauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "closed", "closed", "", "211-revision-v1", "", "", "2018-05-17 11:50:53", "2018-05-17 11:50:53", "", "211", "https://beyondink.alluredigitalmarketing.com.au/211-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("221", "1", "2018-05-17 11:44:28", "2018-05-17 11:44:28", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.93\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#e9f0f6\" background_color_gradient_end=\"rgba(233,240,246,0.2)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/header-bg-2-2.jpg\" custom_margin=\"|||\" custom_padding=\"10%||20%|\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" admin_label=\"Header Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"About Us\" button_url=\"#top\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"rgba(244,88,63,0)\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#f4583f\" button_border_color_hover=\"rgba(244,88,63,0)\" button_border_radius_hover=\"0px\" animation_style=\"fade\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est. [/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Intro Section\" _builder_version=\"3.0.92\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row admin_label=\"Intro Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>We don\'t only make things beautiful. We make them work great as well.</h2>\r\nLorem 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. Lorem ipsum dolor sit amet\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Our Story Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1a1a1a\" admin_label=\"Our Story Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#1a1a1a\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_font_size_last_edited=\"on|desktop\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_text_color=\"#ffffff\" header_2_line_height=\"1.4em\" max_width=\"600px\" max_width_phone=\"100%\" max_width_last_edited=\"on|tablet\" module_alignment=\"right\" custom_margin=\"|||\" custom_padding=\"100px|60px|100px|60px\" custom_padding_last_edited=\"off|desktop\"]<h2>Our Story</h2>\r\nMauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/image-1.jpg\" _builder_version=\"3.0.93\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Video Section\" _builder_version=\"3.0.93\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/header-bg-2-1.jpg\" background_position=\"bottom_right\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|400px|0px\" custom_margin=\"|||\" background_color_1=\"#1a1a1a\" admin_label=\"Video Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#1a1a1a\" parallax=\"off\" parallax_method=\"on\"][et_pb_video src_webm=\"https://www.youtube.com/watch?v=FkQuawiGWUw\" image_src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/section-bg.jpg\" _builder_version=\"3.0.93\" max_width=\"600px\" max_width_last_edited=\"on|phone\" module_alignment=\"right\"][/et_pb_video][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Design Process Section\" _builder_version=\"3.0.92\" custom_padding=\"100px|0px|250px|0px\"][et_pb_row admin_label=\"Design Process Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_text_align=\"center\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>Our Design Process</h2>\r\nMauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Research\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/number-icons_1.png\" image_max_width=\"38px\" admin_label=\"Process\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore.\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/number-icons_2.png\" image_max_width=\"38px\" admin_label=\"Process\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Build\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/number-icons_3.png\" image_max_width=\"38px\" admin_label=\"Process\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About Section\" _builder_version=\"3.0.93\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/image-3-1.jpg\" custom_padding=\"0px|0px|100px|0px\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"0px|0px|27px|0px\" admin_label=\"Texts & Numbers Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Home Workstation\" background_color=\"#1a1a1a\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_margin=\"-150px|||\" custom_padding=\"300px|60px|60px|60px\" custom_padding_tablet=\"60px|||\" custom_padding_last_edited=\"on|tablet\"]Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Projects\" number=\"42\" percent_sign=\"off\" background_layout=\"dark\" _builder_version=\"3.0.93\" title_level=\"h2\" title_font=\"Muli|600|||||||\" title_font_size=\"18px\" title_text_color=\"#ffffff\" title_line_height=\"1.8em\" number_font=\"Muli|700|||||||\" number_font_size=\"50px\" number_text_color=\"#ffffff\" number_line_height=\"1.4em\" background_color=\"#f4583f\" text_orientation=\"left\" custom_padding=\"110px|30px|30px|30px\"][/et_pb_number_counter][et_pb_number_counter title=\"Clients\" number=\"58\" percent_sign=\"off\" _builder_version=\"3.0.92\" title_level=\"h2\" title_font=\"Muli|600|||||||\" title_font_size=\"18px\" title_text_color=\"#737373\" title_line_height=\"1.7em\" number_font=\"Muli|700|||||||\" number_font_size=\"50px\" number_text_color=\"#1a1a1a\" number_line_height=\"1.4em\" background_color=\"#ffffff\" text_orientation=\"left\" custom_margin=\"30px|||\" custom_padding=\"70px|30px|30px|30px\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "closed", "closed", "", "211-revision-v1", "", "", "2018-05-17 11:44:28", "2018-05-17 11:44:28", "", "211", "https://beyondink.alluredigitalmarketing.com.au/211-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("224", "1", "2018-05-17 11:51:10", "2018-05-17 11:51:10", " ", "", "", "publish", "closed", "closed", "", "224", "", "", "2018-07-30 02:30:40", "2018-07-30 02:30:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?p=224", "2", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("226", "1", "2018-05-20 01:42:14", "2018-05-20 01:42:14", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.47)\" background_color_gradient_end=\"rgba(233,240,246,0.2)\" background_color_gradient_end_position=\"67%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/lt-1-1P2147-1511431005-rsd-800x533.jpg\" custom_margin=\"|||\" custom_padding=\"10%||9.6%|\"][et_pb_row custom_padding=\"27px|0px|3px|0px\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" admin_label=\"Header Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"About Us\" button_url=\"#top\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"rgba(244,88,63,0)\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#f4583f\" button_border_color_hover=\"rgba(244,88,63,0)\" button_border_radius_hover=\"0px\" animation_style=\"fade\" header_text_color=\"#ffffff\"]<p>We\'re a boutique design and construction company.</p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Intro Section\" _builder_version=\"3.0.92\" custom_padding=\"56px|0px|60px|0px\"][et_pb_row custom_padding=\"25px|0px|27px|0px\" admin_label=\"Intro Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>Design innovation.<br />Building Excellence.</h2>\n<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. Lorem ipsum dolor sit amet</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Our Story Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1a1a1a\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" admin_label=\"Our Story Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#1a1a1a\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_font_size_last_edited=\"on|desktop\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_text_color=\"#ffffff\" header_2_line_height=\"1.4em\" max_width=\"600px\" max_width_phone=\"100%\" max_width_last_edited=\"on|tablet\" module_alignment=\"right\" custom_margin=\"|||\" custom_padding=\"100px|60px|100px|60px\" custom_padding_last_edited=\"off|desktop\"]<h2>Our Story</h2>\r\nMauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "closed", "closed", "", "211-revision-v1", "", "", "2018-05-20 01:42:14", "2018-05-20 01:42:14", "", "211", "https://beyondink.alluredigitalmarketing.com.au/211-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("229", "1", "2018-05-20 01:43:50", "2018-05-20 01:43:50", "[et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_position=\"top_center\" custom_padding=\"0|0px|100px|0px\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\" text_text_color=\"#000000\" header_text_color=\"#000000\"]<h1>Projects</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_2=\"#f3f3f3\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Front-Entry-Portal-Dulux-Gunmetal-Kinetic-2.jpg\" show_bottom_space=\"off\" _builder_version=\"3.0.106\" custom_padding=\"|||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Commercial\" button_url=\"#top\" button_text=\"Discover more\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#f3f3f3\" background_color_2=\"#f3f3f3\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Residential\" button_url=\"#top\" button_text=\"Discover more\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_2=\"#f3f3f3\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-2.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Renovations\" button_url=\"#top\" button_text=\"Discover more\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#f3f3f3\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Coming Soon\" button_url=\"#top\" button_text=\"Discover more\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/North-East-Corner-Dulux-Gunmetal-Kinetic-Sm.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "Projects", "", "inherit", "closed", "closed", "", "120-revision-v1", "", "", "2018-05-20 01:43:50", "2018-05-20 01:43:50", "", "120", "https://beyondink.alluredigitalmarketing.com.au/120-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("228", "1", "2018-05-20 01:42:30", "2018-05-20 01:42:30", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.47)\" background_color_gradient_end=\"rgba(233,240,246,0.2)\" background_color_gradient_end_position=\"67%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/lt-1-1P2147-1511431005-rsd-800x533.jpg\" custom_margin=\"|||\" custom_padding=\"10%||9.6%|\"][et_pb_row custom_padding=\"27px|0px|3px|0px\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" admin_label=\"Header Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"About Us\" button_url=\"#top\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"rgba(244,88,63,0)\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#f4583f\" button_border_color_hover=\"rgba(244,88,63,0)\" button_border_radius_hover=\"0px\" animation_style=\"fade\" header_text_color=\"#ffffff\"]<p><span style=\"color: #ffffff;\">We\'re a boutique design and construction company.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Intro Section\" _builder_version=\"3.0.92\" custom_padding=\"56px|0px|60px|0px\"][et_pb_row custom_padding=\"25px|0px|27px|0px\" admin_label=\"Intro Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>Design innovation.<br />Building Excellence.</h2>\n<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. Lorem ipsum dolor sit amet</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Our Story Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1a1a1a\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" admin_label=\"Our Story Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#1a1a1a\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_font_size_last_edited=\"on|desktop\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_text_color=\"#ffffff\" header_2_line_height=\"1.4em\" max_width=\"600px\" max_width_phone=\"100%\" max_width_last_edited=\"on|tablet\" module_alignment=\"right\" custom_margin=\"|||\" custom_padding=\"100px|60px|100px|60px\" custom_padding_last_edited=\"off|desktop\"]<h2>Our Story</h2>\r\nMauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "closed", "closed", "", "211-revision-v1", "", "", "2018-05-20 01:42:30", "2018-05-20 01:42:30", "", "211", "https://beyondink.alluredigitalmarketing.com.au/211-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("232", "1", "2018-05-20 01:49:34", "2018-05-20 01:49:34", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Crafers Residence</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row background_color=\"#f1f1f1\" _builder_version=\"3.0.106\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>This residential project included alterations and additions to the existing house.</p>\n<p><strong>Our Involvement: Design, Project Management, Cost Control, Town Planning</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235,250,246\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Crafers Residence", "", "publish", "closed", "closed", "", "crafers-residence", "", "", "2018-07-18 10:41:54", "2018-07-18 10:41:54", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=232", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("304", "1", "2018-05-20 02:06:55", "2018-05-20 02:06:55", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\" background_color=\"#7cda24\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Crafers Residence</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"92px|0px|27px|0px\" admin_label=\"Blog Posts Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"289,288,290,291,244,303,302,238,300,301,240,241,242,235,236,237,239,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,293,294,295,296,297,298,299\" gallery_captions=\",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\" posts_number=\"30\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section]", "Crafers Residence", "", "inherit", "closed", "closed", "", "232-revision-v1", "", "", "2018-05-20 02:06:55", "2018-05-20 02:06:55", "", "232", "https://beyondink.alluredigitalmarketing.com.au/232-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("233", "1", "2018-05-20 01:49:34", "2018-05-20 01:49:34", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Exterior-4-of-6-800x535.jpg\" custom_padding=\"10%|0px|123px|0px\" next_background_color=\"#000000\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"27px|0px|11px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Residential Projects</h1>\r\nMauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\" prev_background_color=\"#000000\"][et_pb_row admin_label=\"Blog Posts Row\" custom_padding=\"92px|0px|27px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"156,158,159,163,161,160,170,169,162,164,165,166\" gallery_captions=\",,,,,,,,,,,\" posts_number=\"14\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.49)\" box_shadow_style_image=\"preset1\" box_shadow_blur_image=\"23px\" _builder_version=\"3.0.106\" title_font=\"||||||||\" title_text_color=\"#000000\" pagination_font=\"||||||||\" custom_margin=\"|||\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Crafers Residence", "", "inherit", "closed", "closed", "", "232-revision-v1", "", "", "2018-05-20 01:49:34", "2018-05-20 01:49:34", "", "232", "https://beyondink.alluredigitalmarketing.com.au/232-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("231", "1", "2018-05-20 01:45:46", "2018-05-20 01:45:46", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#e9f0f6\" background_color_gradient_end=\"rgba(233,240,246,0.2)\" background_color_gradient_end_position=\"44%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/North-East-Corner-Dulux-Gunmetal-Kinetic.jpg\" custom_padding=\"5%||20%|\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\" header_text_color=\"#ffffff\"]<h1>Contact Us</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Contact Section\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|100px|0px\"][et_pb_row custom_padding=\"28px|0px|27px|0px\" admin_label=\"Message Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"left\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" header_text_color=\"#000000\"]<h2>Send Us A Message</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form captcha=\"off\" form_background_color=\"rgba(26,26,26,0.08)\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.106\" title_font=\"||||||||\" form_field_font=\"Muli|600|||||||\" form_field_font_size=\"16px\" form_field_text_color=\"rgba(0,0,0,0.6)\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#000000\" button_border_width=\"10px\" button_border_color=\"#000000\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.0.92\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact", "", "inherit", "closed", "closed", "", "102-revision-v1", "", "", "2018-05-20 01:45:46", "2018-05-20 01:45:46", "", "102", "https://beyondink.alluredigitalmarketing.com.au/102-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("316", "1", "2018-05-20 02:24:46", "2018-05-20 02:24:46", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" background_position_2=\"center\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"#top\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"21px||0|\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" contenteditable=\"true\" data-shortcode-id=\"1.0.0.0-1515376821367\">Insightful design and exemplary construction</h2>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Interior Design<br /> • Landcape Design</p>\n<p>A boutique residential and commercial design and construction company.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Commercial<br /> • Residential</p>\n<p>Passionate about innovation to create the best possible space.</p>\n<p> </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Town Planning<br /> • Cost Control</p>\n<p>Committed to quality and value for money, delivering on time and on budget.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Bridgewater-House.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Work\" button_url=\"#top\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]Lorem ipsum dolor sit amet, consectetur adipiscing 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.\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"]<p><em><span style=\"color: #ffffff;\">We promise not to spam!</span></em></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-05-20 02:24:46", "2018-05-20 02:24:46", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("235", "1", "2018-05-20 01:55:27", "2018-05-20 01:55:27", "", "Crafers Residence", "", "inherit", "open", "closed", "", "1-the-latch-atkinson-rd-crafers-west-18-800x532", "", "", "2018-05-20 01:57:59", "2018-05-20 01:57:59", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/1-The-Latch-Atkinson-Rd-Crafers-West-18-800x532.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("282", "1", "2018-05-20 01:58:02", "2018-05-20 01:58:02", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-43-of-47-800x535", "", "", "2018-05-20 01:59:35", "2018-05-20 01:59:35", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-43-of-47-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("236", "1", "2018-05-20 01:55:30", "2018-05-20 01:55:30", "", "Crafers Residence", "", "inherit", "open", "closed", "", "2-the-latch-atkinson-rd-crafers-west-38-532x800", "", "", "2018-05-20 01:57:54", "2018-05-20 01:57:54", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/2-The-Latch-Atkinson-Rd-Crafers-West-38-532x800.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("237", "1", "2018-05-20 01:55:33", "2018-05-20 01:55:33", "", "Crafers Residence", "", "inherit", "open", "closed", "", "3-the-latch-atkinson-rd-crafers-west-35-800x532", "", "", "2018-05-20 01:57:51", "2018-05-20 01:57:51", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/3-The-Latch-Atkinson-Rd-Crafers-West-35-800x532.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("238", "1", "2018-05-20 01:55:37", "2018-05-20 01:55:37", "", "Crafers Residence", "", "inherit", "open", "closed", "", "4-the-latch-atkinson-rd-crafers-west-4-800x532", "", "", "2018-05-20 01:57:48", "2018-05-20 01:57:48", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/4-The-Latch-Atkinson-Rd-Crafers-West-4-800x532.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("239", "1", "2018-05-20 01:55:40", "2018-05-20 01:55:40", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-800x532", "", "", "2018-05-20 01:57:45", "2018-05-20 01:57:45", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-800x532.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("240", "1", "2018-05-20 01:55:44", "2018-05-20 01:55:44", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-1-of-47-800x535", "", "", "2018-05-20 01:57:43", "2018-05-20 01:57:43", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-1-of-47-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("241", "1", "2018-05-20 01:55:48", "2018-05-20 01:55:48", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-2-of-47-800x535", "", "", "2018-05-20 01:57:38", "2018-05-20 01:57:38", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-2-of-47-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("242", "1", "2018-05-20 01:55:52", "2018-05-20 01:55:52", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-3-of-47-800x535", "", "", "2018-05-20 01:57:37", "2018-05-20 01:57:37", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-3-of-47-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("243", "1", "2018-05-20 01:55:56", "2018-05-20 01:55:56", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-4-of-47-535x800", "", "", "2018-05-20 01:57:33", "2018-05-20 01:57:33", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-4-of-47-535x800.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("244", "1", "2018-05-20 01:55:59", "2018-05-20 01:55:59", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-5-of-47-535x800", "", "", "2018-05-20 01:57:31", "2018-05-20 01:57:31", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-5-of-47-535x800.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("245", "1", "2018-05-20 01:56:03", "2018-05-20 01:56:03", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-6-of-47-800x535", "", "", "2018-05-20 01:57:28", "2018-05-20 01:57:28", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-6-of-47-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("246", "1", "2018-05-20 01:56:06", "2018-05-20 01:56:06", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-7-of-47-800x535", "", "", "2018-05-20 01:57:26", "2018-05-20 01:57:26", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-7-of-47-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("247", "1", "2018-05-20 01:56:08", "2018-05-20 01:56:08", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-8-of-47-800x535", "", "", "2018-05-20 01:57:23", "2018-05-20 01:57:23", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-8-of-47-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("248", "1", "2018-05-20 01:56:11", "2018-05-20 01:56:11", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-9-of-47-800x535", "", "", "2018-05-20 01:57:21", "2018-05-20 01:57:21", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-9-of-47-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("249", "1", "2018-05-20 01:56:13", "2018-05-20 01:56:13", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-10-of-47-800x535", "", "", "2018-05-20 01:57:19", "2018-05-20 01:57:19", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-10-of-47-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("250", "1", "2018-05-20 01:56:17", "2018-05-20 01:56:17", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-11-of-47-800x535", "", "", "2018-05-20 01:57:16", "2018-05-20 01:57:16", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-11-of-47-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("251", "1", "2018-05-20 01:56:20", "2018-05-20 01:56:20", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-12-of-47-800x535", "", "", "2018-05-20 01:57:14", "2018-05-20 01:57:14", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-12-of-47-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("252", "1", "2018-05-20 01:56:23", "2018-05-20 01:56:23", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-13-of-47-800x535", "", "", "2018-05-20 01:57:12", "2018-05-20 01:57:12", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-13-of-47-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("253", "1", "2018-05-20 01:56:25", "2018-05-20 01:56:25", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-14-of-47-800x535", "", "", "2018-05-20 01:57:09", "2018-05-20 01:57:09", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-14-of-47-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("254", "1", "2018-05-20 01:56:28", "2018-05-20 01:56:28", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-15-of-47-800x535", "", "", "2018-05-20 01:57:07", "2018-05-20 01:57:07", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-15-of-47-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("255", "1", "2018-05-20 01:56:31", "2018-05-20 01:56:31", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-16-of-47-800x535", "", "", "2018-05-20 01:56:59", "2018-05-20 01:56:59", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-16-of-47-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("256", "1", "2018-05-20 01:56:36", "2018-05-20 01:56:36", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-17-of-47-800x535", "", "", "2018-05-20 01:56:57", "2018-05-20 01:56:57", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-17-of-47-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("257", "1", "2018-05-20 01:56:40", "2018-05-20 01:56:40", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-18-of-47-800x535", "", "", "2018-05-20 01:56:55", "2018-05-20 01:56:55", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-18-of-47-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("258", "1", "2018-05-20 01:56:42", "2018-05-20 01:56:42", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-19-of-47-800x535", "", "", "2018-05-20 01:56:49", "2018-05-20 01:56:49", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-19-of-47-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("259", "1", "2018-05-20 01:56:46", "2018-05-20 01:56:46", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-20-of-47-800x535", "", "", "2018-05-20 01:56:52", "2018-05-20 01:56:52", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-20-of-47-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("260", "1", "2018-05-20 01:56:49", "2018-05-20 01:56:49", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-21-of-47-800x535", "", "", "2018-05-20 01:58:54", "2018-05-20 01:58:54", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-21-of-47-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("261", "1", "2018-05-20 01:56:52", "2018-05-20 01:56:52", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-22-of-47-800x535", "", "", "2018-05-20 01:58:52", "2018-05-20 01:58:52", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-22-of-47-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("262", "1", "2018-05-20 01:56:55", "2018-05-20 01:56:55", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-23-of-47-535x800", "", "", "2018-05-20 01:58:50", "2018-05-20 01:58:50", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-23-of-47-535x800.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("263", "1", "2018-05-20 01:56:58", "2018-05-20 01:56:58", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-24-of-47-800x535", "", "", "2018-05-20 01:58:48", "2018-05-20 01:58:48", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-24-of-47-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("264", "1", "2018-05-20 01:57:01", "2018-05-20 01:57:01", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-25-of-47-800x535", "", "", "2018-05-20 01:58:45", "2018-05-20 01:58:45", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-25-of-47-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("265", "1", "2018-05-20 01:57:05", "2018-05-20 01:57:05", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-26-of-47-800x535", "", "", "2018-05-20 01:58:43", "2018-05-20 01:58:43", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-26-of-47-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("266", "1", "2018-05-20 01:57:07", "2018-05-20 01:57:07", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-27-of-47-800x535", "", "", "2018-05-20 01:58:41", "2018-05-20 01:58:41", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-27-of-47-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("267", "1", "2018-05-20 01:57:11", "2018-05-20 01:57:11", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-28-of-47-800x535", "", "", "2018-05-20 01:58:39", "2018-05-20 01:58:39", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-28-of-47-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("268", "1", "2018-05-20 01:57:16", "2018-05-20 01:57:16", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-29-of-47-800x535", "", "", "2018-05-20 01:58:37", "2018-05-20 01:58:37", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-29-of-47-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("269", "1", "2018-05-20 01:57:19", "2018-05-20 01:57:19", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-30-of-47-800x535", "", "", "2018-05-20 01:58:35", "2018-05-20 01:58:35", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-30-of-47-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("270", "1", "2018-05-20 01:57:22", "2018-05-20 01:57:22", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-31-of-47-800x535", "", "", "2018-05-20 01:58:32", "2018-05-20 01:58:32", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-31-of-47-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("271", "1", "2018-05-20 01:57:28", "2018-05-20 01:57:28", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-32-of-47-535x800", "", "", "2018-05-20 01:58:31", "2018-05-20 01:58:31", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-32-of-47-535x800.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("272", "1", "2018-05-20 01:57:32", "2018-05-20 01:57:32", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-33-of-47-800x535", "", "", "2018-05-20 01:58:28", "2018-05-20 01:58:28", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-33-of-47-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("273", "1", "2018-05-20 01:57:35", "2018-05-20 01:57:35", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-34-of-47-535x800", "", "", "2018-05-20 01:58:25", "2018-05-20 01:58:25", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-34-of-47-535x800.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("274", "1", "2018-05-20 01:57:37", "2018-05-20 01:57:37", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-35-of-47-800x535", "", "", "2018-05-20 01:58:22", "2018-05-20 01:58:22", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-35-of-47-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("275", "1", "2018-05-20 01:57:40", "2018-05-20 01:57:40", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-36-of-47-800x535", "", "", "2018-05-20 01:58:12", "2018-05-20 01:58:12", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-36-of-47-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("276", "1", "2018-05-20 01:57:42", "2018-05-20 01:57:42", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-37-of-47-800x535", "", "", "2018-05-20 01:58:17", "2018-05-20 01:58:17", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-37-of-47-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("277", "1", "2018-05-20 01:57:46", "2018-05-20 01:57:46", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-38-of-47-535x800", "", "", "2018-05-20 01:58:09", "2018-05-20 01:58:09", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-38-of-47-535x800.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("278", "1", "2018-05-20 01:57:50", "2018-05-20 01:57:50", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-39-of-47-800x535", "", "", "2018-05-20 01:58:07", "2018-05-20 01:58:07", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-39-of-47-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("279", "1", "2018-05-20 01:57:52", "2018-05-20 01:57:52", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-40-of-47-800x535", "", "", "2018-05-20 01:58:04", "2018-05-20 01:58:04", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-40-of-47-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("280", "1", "2018-05-20 01:57:55", "2018-05-20 01:57:55", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-41-of-47-800x535", "", "", "2018-05-20 01:58:02", "2018-05-20 01:58:02", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-41-of-47-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("281", "1", "2018-05-20 01:57:59", "2018-05-20 01:57:59", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-42-of-47-800x535", "", "", "2018-05-20 01:59:37", "2018-05-20 01:59:37", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-42-of-47-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("283", "1", "2018-05-20 01:58:05", "2018-05-20 01:58:05", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-44-of-47-800x535", "", "", "2018-05-20 01:59:33", "2018-05-20 01:59:33", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-44-of-47-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("284", "1", "2018-05-20 01:58:11", "2018-05-20 01:58:11", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-45-of-47-800x535", "", "", "2018-05-20 01:59:30", "2018-05-20 01:59:30", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-45-of-47-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("285", "1", "2018-05-20 01:58:14", "2018-05-20 01:58:14", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-46-of-47-535x800", "", "", "2018-05-20 01:59:28", "2018-05-20 01:59:28", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-46-of-47-535x800.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("286", "1", "2018-05-20 01:58:17", "2018-05-20 01:58:17", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-day-47-of-47-800x535", "", "", "2018-05-20 01:59:26", "2018-05-20 01:59:26", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-47-of-47-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("287", "1", "2018-05-20 01:58:21", "2018-05-20 01:58:21", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-exterior-1-of-6-800x535", "", "", "2018-05-20 01:59:24", "2018-05-20 01:59:24", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Exterior-1-of-6-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("288", "1", "2018-05-20 01:58:27", "2018-05-20 01:58:27", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-exterior-2-of-6-800x535", "", "", "2018-05-20 01:59:21", "2018-05-20 01:59:21", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Exterior-2-of-6-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("289", "1", "2018-05-20 01:58:32", "2018-05-20 01:58:32", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-exterior-3-of-6-800x535-2", "", "", "2018-05-20 01:59:19", "2018-05-20 01:59:19", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Exterior-3-of-6-800x535-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("290", "1", "2018-05-20 01:58:37", "2018-05-20 01:58:37", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-exterior-4-of-6-800x535-2", "", "", "2018-05-20 01:59:16", "2018-05-20 01:59:16", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Exterior-4-of-6-800x535-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("291", "1", "2018-05-20 01:58:41", "2018-05-20 01:58:41", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-exterior-5-of-6-535x800", "", "", "2018-05-20 01:59:14", "2018-05-20 01:59:14", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Exterior-5-of-6-535x800.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("292", "1", "2018-05-20 01:58:48", "2018-05-20 01:58:48", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-atkinson-exterior-6-of-6-800x535", "", "", "2018-05-20 01:59:12", "2018-05-20 01:59:12", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Exterior-6-of-6-800x535.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("293", "1", "2018-05-20 01:58:50", "2018-05-20 01:58:50", "", "Crafers Residence", "", "inherit", "open", "closed", "", "5-the-latch-atkinson-rd-crafers-west-37-800x532", "", "", "2018-05-20 01:59:10", "2018-05-20 01:59:10", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-The-Latch-Atkinson-Rd-Crafers-West-37-800x532.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("294", "1", "2018-05-20 01:58:53", "2018-05-20 01:58:53", "", "Crafers Residence", "", "inherit", "open", "closed", "", "7-the-latch-atkinson-rd-crafers-west-28-800x532", "", "", "2018-05-20 01:59:08", "2018-05-20 01:59:08", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/7-The-Latch-Atkinson-Rd-Crafers-West-28-800x532.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("295", "1", "2018-05-20 01:58:56", "2018-05-20 01:58:56", "", "Crafers Residence", "", "inherit", "open", "closed", "", "9-the-latch-atkinson-rd-crafers-west-25-532x800", "", "", "2018-05-20 01:59:05", "2018-05-20 01:59:05", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/9-The-Latch-Atkinson-Rd-Crafers-West-25-532x800.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("296", "1", "2018-05-20 01:58:59", "2018-05-20 01:58:59", "", "Crafers Residence", "", "inherit", "open", "closed", "", "10-the-latch-atkinson-rd-crafers-west-20-800x532", "", "", "2018-05-20 01:59:03", "2018-05-20 01:59:03", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/10-The-Latch-Atkinson-Rd-Crafers-West-20-800x532.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("297", "1", "2018-05-20 01:59:05", "2018-05-20 01:59:05", "", "Adelaide Matters, Crafers Residence", "", "inherit", "open", "closed", "", "adelaide-matters-1-650x800", "", "", "2018-05-20 01:59:56", "2018-05-20 01:59:56", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Adelaide-Matters-1-650x800.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("298", "1", "2018-05-20 02:02:34", "2018-05-20 02:02:34", "", "Crafers Residence", "", "inherit", "open", "closed", "", "lt-1-1p2147-1511431005-rsd-800x533-2", "", "", "2018-05-20 02:02:51", "2018-05-20 02:02:51", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/lt-1-1P2147-1511431005-rsd-800x533-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("299", "1", "2018-05-20 02:02:36", "2018-05-20 02:02:36", "", "Crafers Residence", "", "inherit", "open", "closed", "", "lt-1-1p2147-1511447357-rsd-800x533", "", "", "2018-05-20 02:02:50", "2018-05-20 02:02:50", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/lt-1-1P2147-1511447357-rsd-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("300", "1", "2018-05-20 02:02:38", "2018-05-20 02:02:38", "", "Crafers Residence", "", "inherit", "open", "closed", "", "lt-1-1p2147-1811196365-rsd-800x533", "", "", "2018-05-20 02:02:43", "2018-05-20 02:02:43", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/lt-1-1P2147-1811196365-rsd-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("301", "1", "2018-05-20 02:02:40", "2018-05-20 02:02:40", "", "Crafers Residence", "", "inherit", "open", "closed", "", "lt-1-1p2147-1811234477-rsd-800x533", "", "", "2018-05-20 02:02:46", "2018-05-20 02:02:46", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/lt-1-1P2147-1811234477-rsd-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("302", "1", "2018-05-20 02:02:43", "2018-05-20 02:02:43", "", "Crafers Residence", "", "inherit", "open", "closed", "", "the-latch-atkinson-rd-crafers-west-5-800x532", "", "", "2018-05-20 02:02:48", "2018-05-20 02:02:48", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/The-Latch-Atkinson-Rd-Crafers-West-5-800x532.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("306", "1", "2018-05-20 02:16:08", "2018-05-20 02:16:08", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\" background_color=\"#7cda24\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Crafers Residence</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row _builder_version=\"3.0.106\" make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"299,300,303,302,298,290,288,289,277,284,250,244,249,242,260\" gallery_captions=\",,,,,,,,,,,,,,\" posts_number=\"20\" show_title_and_caption=\"off\" show_pagination=\"off\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|0|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Crafers Residence", "", "inherit", "closed", "closed", "", "232-revision-v1", "", "", "2018-05-20 02:16:08", "2018-05-20 02:16:08", "", "232", "https://beyondink.alluredigitalmarketing.com.au/232-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("308", "1", "2018-05-20 02:18:44", "2018-05-20 02:18:44", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\" background_color=\"#7cda24\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Crafers Residence</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row _builder_version=\"3.0.106\" make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|0|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Crafers Residence", "", "inherit", "closed", "closed", "", "232-revision-v1", "", "", "2018-05-20 02:18:44", "2018-05-20 02:18:44", "", "232", "https://beyondink.alluredigitalmarketing.com.au/232-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("310", "1", "2018-05-20 02:19:13", "2018-05-20 02:19:13", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\" background_color=\"#7cda24\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Crafers Residence</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row _builder_version=\"3.0.106\" make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" _builder_version=\"3.0.106\" hover_overlay_color=\"rgba(255,255,255,0.41)\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|0|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Crafers Residence", "", "inherit", "closed", "closed", "", "232-revision-v1", "", "", "2018-05-20 02:19:13", "2018-05-20 02:19:13", "", "232", "https://beyondink.alluredigitalmarketing.com.au/232-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("313", "1", "2018-05-20 02:22:19", "2018-05-20 02:22:19", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"0px|0px|0|0px\" custom_margin=\"|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"18%\" padding_left_1=\"10%\" padding_top_2=\"10%\" background_position_2=\"center\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"18%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"#top\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"100px||100px|\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" contenteditable=\"true\" data-shortcode-id=\"1.0.0.0-1515376821367\">Insightful design and exemplary construction</h2>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Interior Design<br /> • Landcape Design</p>\n<p>A boutique residential and commercial design and construction company.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Commercial<br /> • Residential</p>\n<p>Passionate about innovation to create the best possible space.</p>\n<p> </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Town Planning<br /> • Cost Control</p>\n<p>Committed to quality and value for money, delivering on time and on budget.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Bridgewater-House.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Work\" button_url=\"#top\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]Lorem ipsum dolor sit amet, consectetur adipiscing 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.\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"]<p><em><span style=\"color: #ffffff;\">We promise not to spam!</span></em></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-05-20 02:22:19", "2018-05-20 02:22:19", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("321", "1", "2018-05-20 02:30:10", "2018-05-20 02:30:10", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Exterior-3-of-6-800x535.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Residential Projects</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"92px|0px|27px|0px\" admin_label=\"Blog Posts Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"156,158,159,163,161,160,170,169,162,164,165,166\" gallery_captions=\",,,,,,,,,,,\" posts_number=\"14\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.49)\" box_shadow_style_image=\"preset1\" box_shadow_blur_image=\"23px\" _builder_version=\"3.0.106\" title_font=\"||||||||\" title_text_color=\"#000000\" pagination_font=\"||||||||\" custom_margin=\"|||\"][/et_pb_gallery][et_pb_portfolio _builder_version=\"3.0.106\"][/et_pb_portfolio][/et_pb_column][/et_pb_row][/et_pb_section]", "Residential", "", "inherit", "closed", "closed", "", "152-revision-v1", "", "", "2018-05-20 02:30:10", "2018-05-20 02:30:10", "", "152", "https://beyondink.alluredigitalmarketing.com.au/152-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("318", "1", "2018-05-20 02:27:18", "2018-05-20 02:27:18", "[et_pb_section fb_built=\"1\" background_color=\"#7cda24\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Crafers Residence</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235,250,246\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" zoom_icon_color=\"#000000\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|0|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Crafers Residence", "", "inherit", "closed", "closed", "", "232-revision-v1", "", "", "2018-05-20 02:27:18", "2018-05-20 02:27:18", "", "232", "https://beyondink.alluredigitalmarketing.com.au/232-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("320", "1", "2018-05-20 02:28:56", "2018-05-20 02:28:56", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Crafers Residence</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235,250,246\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Crafers Residence", "", "inherit", "closed", "closed", "", "232-revision-v1", "", "", "2018-05-20 02:28:56", "2018-05-20 02:28:56", "", "232", "https://beyondink.alluredigitalmarketing.com.au/232-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("322", "1", "2018-05-20 11:03:17", "2018-05-20 11:03:17", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Crafers Residence</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235,250,246\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Project Page", "", "publish", "closed", "closed", "", "project-page", "", "", "2018-05-20 11:03:17", "2018-05-20 11:03:17", "", "0", "https://beyondink.alluredigitalmarketing.com.au/et_pb_layout/project-page/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("323", "1", "2018-05-20 11:04:29", "2018-05-20 11:04:29", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|40px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Mount Barker Residence</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p><strong>Our Involvement: Design, Town Planning</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"326,327,328,329,330,331,332,333,334,335,336,337\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Adelaide Hills Residence", "", "publish", "closed", "closed", "", "adelaide-hills-residence", "", "", "2018-07-24 11:56:08", "2018-07-24 11:56:08", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=323", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("324", "1", "2018-05-20 11:04:29", "2018-05-20 11:04:29", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#9dd00f\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"27px|0px|11px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Crafers Residence</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\" prev_background_color=\"#9dd00f\" next_background_color=\"#000000\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235,250,246\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\" prev_background_color=\"#000000\"][et_pb_fullwidth_image _builder_version=\"3.0.106\" /][/et_pb_section]", "Adelaide Hills Residence", "", "inherit", "closed", "closed", "", "323-revision-v1", "", "", "2018-05-20 11:04:29", "2018-05-20 11:04:29", "", "323", "https://beyondink.alluredigitalmarketing.com.au/323-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("339", "1", "2018-05-20 11:13:24", "2018-05-20 11:13:24", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Totness Residence</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"341,342,343,344,345,346,347,348,349,350,351,352,353\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Totness Residence", "", "publish", "closed", "closed", "", "totness-residence", "", "", "2018-05-20 11:13:24", "2018-05-20 11:13:24", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=339", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("340", "1", "2018-05-20 11:09:03", "2018-05-20 11:09:03", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#9dd00f\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"27px|0px|11px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Crafers Residence</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\" prev_background_color=\"#9dd00f\" next_background_color=\"#000000\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235,250,246\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\" prev_background_color=\"#000000\"][et_pb_fullwidth_image _builder_version=\"3.0.106\" /][/et_pb_section]", "Totness Residence", "", "inherit", "closed", "closed", "", "339-revision-v1", "", "", "2018-05-20 11:09:03", "2018-05-20 11:09:03", "", "339", "https://beyondink.alluredigitalmarketing.com.au/339-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("326", "1", "2018-05-20 11:06:12", "2018-05-20 11:06:12", "", "Adelaide Hills Residence", "", "inherit", "open", "closed", "", "2010088983_10_fs", "", "", "2018-05-20 11:06:31", "2018-05-20 11:06:31", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/2010088983_10_FS.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("327", "1", "2018-05-20 11:06:15", "2018-05-20 11:06:15", "", "Adelaide Hills Residence", "", "inherit", "open", "closed", "", "2010088983_11_fs", "", "", "2018-05-20 11:06:34", "2018-05-20 11:06:34", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/2010088983_11_FS.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("328", "1", "2018-05-20 11:06:17", "2018-05-20 11:06:17", "", "Adelaide Hills Residence", "", "inherit", "open", "closed", "", "2010088983_13_fs", "", "", "2018-05-20 11:06:38", "2018-05-20 11:06:38", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/2010088983_13_FS.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("329", "1", "2018-05-20 11:06:18", "2018-05-20 11:06:18", "", "Adelaide Hills Residence", "", "inherit", "open", "closed", "", "2010088983_17_fs", "", "", "2018-05-20 11:06:39", "2018-05-20 11:06:39", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/2010088983_17_FS.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("330", "1", "2018-05-20 11:06:20", "2018-05-20 11:06:20", "", "Adelaide Hills Residence", "", "inherit", "open", "closed", "", "2010088983_19_fs", "", "", "2018-05-20 11:06:41", "2018-05-20 11:06:41", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/2010088983_19_FS.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("331", "1", "2018-05-20 11:06:22", "2018-05-20 11:06:22", "", "Adelaide Hills Residence", "", "inherit", "open", "closed", "", "bell-6", "", "", "2018-05-20 11:06:49", "2018-05-20 11:06:49", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Bell-6.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("332", "1", "2018-05-20 11:06:25", "2018-05-20 11:06:25", "", "Adelaide Hills Residence", "", "inherit", "open", "closed", "", "bell-7", "", "", "2018-05-20 11:06:46", "2018-05-20 11:06:46", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Bell-7.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("333", "1", "2018-05-20 11:06:26", "2018-05-20 11:06:26", "", "Adelaide Hills Residence", "", "inherit", "open", "closed", "", "bell-8", "", "", "2018-05-20 11:06:52", "2018-05-20 11:06:52", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Bell-8.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("334", "1", "2018-05-20 11:06:28", "2018-05-20 11:06:28", "", "Adelaide Hills Residence", "", "inherit", "open", "closed", "", "bell-9", "", "", "2018-05-20 11:06:53", "2018-05-20 11:06:53", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Bell-9.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("335", "1", "2018-05-20 11:06:30", "2018-05-20 11:06:30", "", "Adelaide Hills Residence", "", "inherit", "open", "closed", "", "bell-crt-2", "", "", "2018-05-20 11:06:56", "2018-05-20 11:06:56", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Bell-Crt-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("336", "1", "2018-05-20 11:06:31", "2018-05-20 11:06:31", "", "Adelaide Hills Residence", "", "inherit", "open", "closed", "", "bell-crt-4-2", "", "", "2018-05-20 11:06:58", "2018-05-20 11:06:58", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Bell-Crt-4-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("337", "1", "2018-05-20 11:06:33", "2018-05-20 11:06:33", "", "Adelaide Hills Residence", "", "inherit", "open", "closed", "", "bell-crt-5", "", "", "2018-05-20 11:07:03", "2018-05-20 11:07:03", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Bell-Crt-5.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("338", "1", "2018-05-20 11:07:24", "2018-05-20 11:07:24", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|40px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Adelaide Hills Residence</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"326,327,328,329,330,331,332,333,334,335,336,337\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Adelaide Hills Residence", "", "inherit", "closed", "closed", "", "323-revision-v1", "", "", "2018-05-20 11:07:24", "2018-05-20 11:07:24", "", "323", "https://beyondink.alluredigitalmarketing.com.au/323-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("341", "1", "2018-05-20 11:11:57", "2018-05-20 11:11:57", "", "Totness Residence", "", "inherit", "open", "closed", "", "7-800x600", "", "", "2018-05-20 11:12:22", "2018-05-20 11:12:22", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/7-800x600.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("342", "1", "2018-05-20 11:12:00", "2018-05-20 11:12:00", "", "Totness Residence", "", "inherit", "open", "closed", "", "8-800x600", "", "", "2018-05-20 11:12:25", "2018-05-20 11:12:25", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/8-800x600.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("343", "1", "2018-05-20 11:12:05", "2018-05-20 11:12:05", "", "Totness Residence", "", "inherit", "open", "closed", "", "9-800x533", "", "", "2018-05-20 11:12:27", "2018-05-20 11:12:27", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/9-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("344", "1", "2018-05-20 11:12:09", "2018-05-20 11:12:09", "", "Totness Residence", "", "inherit", "open", "closed", "", "11-800x533", "", "", "2018-05-20 11:12:29", "2018-05-20 11:12:29", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/11-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("345", "1", "2018-05-20 11:12:12", "2018-05-20 11:12:12", "", "Totness Residence", "", "inherit", "open", "closed", "", "12-800x533", "", "", "2018-05-20 11:12:32", "2018-05-20 11:12:32", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/12-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("346", "1", "2018-05-20 11:12:16", "2018-05-20 11:12:16", "", "Totness Residence", "", "inherit", "open", "closed", "", "13-800x533", "", "", "2018-05-20 11:12:35", "2018-05-20 11:12:35", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/13-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("347", "1", "2018-05-20 11:12:20", "2018-05-20 11:12:20", "", "Totness Residence", "", "inherit", "open", "closed", "", "14-800x533", "", "", "2018-05-20 11:12:39", "2018-05-20 11:12:39", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/14-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("348", "1", "2018-05-20 11:12:26", "2018-05-20 11:12:26", "", "Totness Residence", "", "inherit", "open", "closed", "", "16-800x533", "", "", "2018-05-20 11:12:40", "2018-05-20 11:12:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/16-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("349", "1", "2018-05-20 11:12:29", "2018-05-20 11:12:29", "", "Totness Residence", "", "inherit", "open", "closed", "", "2012-02-13-10-29-59-800x600", "", "", "2018-05-20 11:12:42", "2018-05-20 11:12:42", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/2012-02-13-10.29.59-800x600.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("350", "1", "2018-05-20 11:12:32", "2018-05-20 11:12:32", "", "Totness Residence", "", "inherit", "open", "closed", "", "2012-02-13-10-31-18-800x600", "", "", "2018-05-20 11:12:47", "2018-05-20 11:12:47", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/2012-02-13-10.31.18-800x600.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("351", "1", "2018-05-20 11:12:35", "2018-05-20 11:12:35", "", "Totness Residence", "", "inherit", "open", "closed", "", "2012-02-13-10-31-47-800x600", "", "", "2018-05-20 11:12:51", "2018-05-20 11:12:51", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/2012-02-13-10.31.47-800x600.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("352", "1", "2018-05-20 11:12:39", "2018-05-20 11:12:39", "", "Totness Residence", "", "inherit", "open", "closed", "", "img_0173-800x533", "", "", "2018-05-20 11:12:54", "2018-05-20 11:12:54", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/IMG_0173-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("353", "1", "2018-05-20 11:12:44", "2018-05-20 11:12:44", "", "Totness Residence", "", "inherit", "open", "closed", "", "img_0178-800x533", "", "", "2018-05-20 11:13:00", "2018-05-20 11:13:00", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/IMG_0178-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("354", "1", "2018-05-20 11:13:24", "2018-05-20 11:13:24", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Totness Residence</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"341,342,343,344,345,346,347,348,349,350,351,352,353\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Totness Residence", "", "inherit", "closed", "closed", "", "339-revision-v1", "", "", "2018-05-20 11:13:24", "2018-05-20 11:13:24", "", "339", "https://beyondink.alluredigitalmarketing.com.au/339-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("355", "1", "2018-05-20 11:14:32", "2018-05-20 11:14:32", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Echunga Residence</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row background_color=\"#f1f1f1\" _builder_version=\"3.0.106\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p><strong>Our Involvement: Design</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"358,359,360,361,362,363,364,365,366,367\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Echunga Residence", "", "publish", "closed", "closed", "", "echunga-residence", "", "", "2018-07-18 10:48:34", "2018-07-18 10:48:34", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=355", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("356", "1", "2018-05-20 11:14:32", "2018-05-20 11:14:32", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#9dd00f\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"27px|0px|11px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Crafers Residence</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\" prev_background_color=\"#9dd00f\" next_background_color=\"#000000\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235,250,246\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\" prev_background_color=\"#000000\"][et_pb_fullwidth_image _builder_version=\"3.0.106\" /][/et_pb_section]", "Echunga Residence", "", "inherit", "closed", "closed", "", "355-revision-v1", "", "", "2018-05-20 11:14:32", "2018-05-20 11:14:32", "", "355", "https://beyondink.alluredigitalmarketing.com.au/355-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("369", "1", "2018-05-20 11:19:46", "2018-05-20 11:19:46", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Battunga Residence</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"372,373,374,375\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Battunga Residence", "", "publish", "closed", "closed", "", "battunga-residence", "", "", "2018-05-20 11:22:25", "2018-05-20 11:22:25", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=369", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("358", "1", "2018-05-20 11:15:15", "2018-05-20 11:15:15", "", "Echunga Residence", "", "inherit", "open", "closed", "", "305653_359854987383488_1833829054_n-2", "", "", "2018-06-10 09:18:49", "2018-06-10 09:18:49", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/305653_359854987383488_1833829054_n-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("359", "1", "2018-05-20 11:16:40", "2018-05-20 11:16:40", "", "Echunga Residence", "", "inherit", "open", "closed", "", "156515_359855010716819_1358822050_n", "", "", "2018-05-20 11:17:00", "2018-05-20 11:17:00", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/156515_359855010716819_1358822050_n.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("360", "1", "2018-05-20 11:16:41", "2018-05-20 11:16:41", "", "Echunga Residence", "", "inherit", "open", "closed", "", "398894_359855930716727_1584585568_n", "", "", "2018-05-20 11:16:54", "2018-05-20 11:16:54", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/398894_359855930716727_1584585568_n.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("361", "1", "2018-05-20 11:16:43", "2018-05-20 11:16:43", "", "Echunga Residence", "", "inherit", "open", "closed", "", "399123_359854960716824_1745614817_n", "", "", "2018-05-20 11:17:25", "2018-05-20 11:17:25", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/399123_359854960716824_1745614817_n.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("362", "1", "2018-05-20 11:16:44", "2018-05-20 11:16:44", "", "Echunga Residence", "", "inherit", "open", "closed", "", "403396_359855827383404_315308128_n", "", "", "2018-05-20 11:17:23", "2018-05-20 11:17:23", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/403396_359855827383404_315308128_n.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("363", "1", "2018-05-20 11:16:46", "2018-05-20 11:16:46", "", "Echunga Residence", "", "inherit", "open", "closed", "", "522667_359855864050067_787378709_n", "", "", "2018-05-20 11:17:20", "2018-05-20 11:17:20", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/522667_359855864050067_787378709_n.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("364", "1", "2018-05-20 11:16:48", "2018-05-20 11:16:48", "", "Echunga Residence", "", "inherit", "open", "closed", "", "535785_359854877383499_1699846534_n2", "", "", "2018-05-20 11:17:18", "2018-05-20 11:17:18", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/535785_359854877383499_1699846534_n2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("365", "1", "2018-05-20 11:16:49", "2018-05-20 11:16:49", "", "Echunga Residence", "", "inherit", "open", "closed", "", "536803_359854900716830_634889735_n", "", "", "2018-05-20 11:17:16", "2018-05-20 11:17:16", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/536803_359854900716830_634889735_n.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("366", "1", "2018-05-20 11:16:50", "2018-05-20 11:16:50", "", "Echunga Residence", "", "inherit", "open", "closed", "", "558724_359854937383493_2042806738_n", "", "", "2018-05-20 11:17:13", "2018-05-20 11:17:13", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/558724_359854937383493_2042806738_n.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("367", "1", "2018-05-20 11:16:51", "2018-05-20 11:16:51", "", "Echunga Residence", "", "inherit", "open", "closed", "", "564986_359855910716729_517072679_n", "", "", "2018-05-20 11:17:11", "2018-05-20 11:17:11", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/564986_359855910716729_517072679_n.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("368", "1", "2018-05-20 11:18:28", "2018-05-20 11:18:28", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Echunga Residence</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"358,359,360,361,362,363,364,365,366,367\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Echunga Residence", "", "inherit", "closed", "closed", "", "355-revision-v1", "", "", "2018-05-20 11:18:28", "2018-05-20 11:18:28", "", "355", "https://beyondink.alluredigitalmarketing.com.au/355-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("370", "1", "2018-05-20 11:19:46", "2018-05-20 11:19:46", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#9dd00f\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"27px|0px|11px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Crafers Residence</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\" prev_background_color=\"#9dd00f\" next_background_color=\"#000000\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235,250,246\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\" prev_background_color=\"#000000\"][et_pb_fullwidth_image _builder_version=\"3.0.106\" /][/et_pb_section]", "Battunga Residence", "", "inherit", "closed", "closed", "", "369-revision-v1", "", "", "2018-05-20 11:19:46", "2018-05-20 11:19:46", "", "369", "https://beyondink.alluredigitalmarketing.com.au/369-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("378", "1", "2018-05-20 11:23:23", "2018-05-20 11:23:23", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|34px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Jupiter Creek Country Residence</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p><strong>Our Involvement: Design, Town Planning</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"381,382,383,384,385,386\" gallery_orderby=\"rand\" gallery_captions=\",,,,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Jupiter Creek Residence", "", "publish", "closed", "closed", "", "jupiter-creek-residence", "", "", "2018-07-24 12:34:04", "2018-07-24 12:34:04", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=378", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("372", "1", "2018-05-20 11:20:49", "2018-05-20 11:20:49", "", "Battunga Residence", "", "inherit", "open", "closed", "", "425573_318529888182665_1787921071_n-2", "", "", "2018-05-20 11:22:15", "2018-05-20 11:22:15", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/425573_318529888182665_1787921071_n-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("373", "1", "2018-05-20 11:21:48", "2018-05-20 11:21:48", "", "Battunga Residence", "", "inherit", "open", "closed", "", "409315_318529751516012_492909972_n", "", "", "2018-05-20 11:22:03", "2018-05-20 11:22:03", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/409315_318529751516012_492909972_n.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("374", "1", "2018-05-20 11:21:50", "2018-05-20 11:21:50", "", "Battunga Residence", "", "inherit", "open", "closed", "", "417328_318529808182673_143143435_n", "", "", "2018-05-20 11:22:06", "2018-05-20 11:22:06", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/417328_318529808182673_143143435_n.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("375", "1", "2018-05-20 11:21:51", "2018-05-20 11:21:51", "", "Battunga Residence", "", "inherit", "open", "closed", "", "417983_318529854849335_53936863_n", "", "", "2018-05-20 11:22:09", "2018-05-20 11:22:09", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/417983_318529854849335_53936863_n.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("376", "1", "2018-05-20 11:22:25", "2018-05-20 11:22:25", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Battunga Residence</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"372,373,374,375\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Battunga Residence", "", "inherit", "closed", "closed", "", "369-revision-v1", "", "", "2018-05-20 11:22:25", "2018-05-20 11:22:25", "", "369", "https://beyondink.alluredigitalmarketing.com.au/369-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("379", "1", "2018-05-20 11:23:23", "2018-05-20 11:23:23", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#9dd00f\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"27px|0px|11px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Crafers Residence</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\" prev_background_color=\"#9dd00f\" next_background_color=\"#000000\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235,250,246\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\" prev_background_color=\"#000000\"][et_pb_fullwidth_image _builder_version=\"3.0.106\" /][/et_pb_section]", "Jupiter Creek Residence", "", "inherit", "closed", "closed", "", "378-revision-v1", "", "", "2018-05-20 11:23:23", "2018-05-20 11:23:23", "", "378", "https://beyondink.alluredigitalmarketing.com.au/378-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("389", "1", "2018-05-20 11:26:33", "2018-05-20 11:26:33", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|39px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Bridgewater Rammed Earth Renovation</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"392,393,394,395,396,397,398,399,400\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,\" posts_number=\"8\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Bridgewater Rammed Earth Renovation", "", "publish", "closed", "closed", "", "bridgewater-rammed-earth-renovation", "", "", "2018-07-24 12:32:21", "2018-07-24 12:32:21", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=389", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("381", "1", "2018-05-20 11:24:05", "2018-05-20 11:24:05", "", "Jupter Creek Residence", "", "inherit", "open", "closed", "", "399949_317440688291585_1511337278_n-2", "", "", "2018-06-10 09:20:12", "2018-06-10 09:20:12", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/399949_317440688291585_1511337278_n-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("382", "1", "2018-05-20 11:25:02", "2018-05-20 11:25:02", "", "Jupiter Creek Country Residence", "", "inherit", "open", "closed", "", "395254_317440711624916_1099705238_n", "", "", "2018-05-20 11:25:12", "2018-05-20 11:25:12", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/395254_317440711624916_1099705238_n.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("383", "1", "2018-05-20 11:25:03", "2018-05-20 11:25:03", "", "Jupiter Creek Country Residence", "", "inherit", "open", "closed", "", "400973_317440561624931_1471458582_n", "", "", "2018-05-20 11:25:21", "2018-05-20 11:25:21", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/400973_317440561624931_1471458582_n.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("384", "1", "2018-05-20 11:25:05", "2018-05-20 11:25:05", "", "Jupiter Creek Country Residence", "", "inherit", "open", "closed", "", "422275_317440648291589_232537411_n", "", "", "2018-05-20 11:25:19", "2018-05-20 11:25:19", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/422275_317440648291589_232537411_n.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("385", "1", "2018-05-20 11:25:06", "2018-05-20 11:25:06", "", "Jupiter Creek Country Residence", "", "inherit", "open", "closed", "", "423007_317440608291593_1334194324_n", "", "", "2018-05-20 11:25:17", "2018-05-20 11:25:17", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/423007_317440608291593_1334194324_n.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("386", "1", "2018-05-20 11:25:08", "2018-05-20 11:25:08", "", "Jupiter Creek Country Residence", "", "inherit", "open", "closed", "", "429042_317440628291591_807137394_n", "", "", "2018-05-20 11:25:15", "2018-05-20 11:25:15", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/429042_317440628291591_807137394_n.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("387", "1", "2018-05-20 11:25:43", "2018-05-20 11:25:43", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|34px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Jupiter Creek Country Residence</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"381,382,383,384,385,386\" gallery_orderby=\"rand\" gallery_captions=\",,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Jupiter Creek Residence", "", "inherit", "closed", "closed", "", "378-revision-v1", "", "", "2018-05-20 11:25:43", "2018-05-20 11:25:43", "", "378", "https://beyondink.alluredigitalmarketing.com.au/378-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("390", "1", "2018-05-20 11:26:33", "2018-05-20 11:26:33", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#9dd00f\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"27px|0px|11px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Crafers Residence</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\" prev_background_color=\"#9dd00f\" next_background_color=\"#000000\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235,250,246\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\" prev_background_color=\"#000000\"][et_pb_fullwidth_image _builder_version=\"3.0.106\" /][/et_pb_section]", "Bridgewater Rammed Earth Renovation", "", "inherit", "closed", "closed", "", "389-revision-v1", "", "", "2018-05-20 11:26:33", "2018-05-20 11:26:33", "", "389", "https://beyondink.alluredigitalmarketing.com.au/389-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("392", "1", "2018-05-20 11:32:08", "2018-05-20 11:32:08", "", "Bridgewater Rammed Earth Renovation", "", "inherit", "open", "closed", "", "1", "", "", "2018-05-20 11:34:16", "2018-05-20 11:34:16", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("393", "1", "2018-05-20 11:32:10", "2018-05-20 11:32:10", "", "Bridgewater Rammed Earth Renovation", "", "inherit", "open", "closed", "", "2", "", "", "2018-05-20 11:34:24", "2018-05-20 11:34:24", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("394", "1", "2018-05-20 11:32:12", "2018-05-20 11:32:12", "", "Bridgewater Rammed Earth Renovation", "", "inherit", "open", "closed", "", "4", "", "", "2018-05-20 11:34:31", "2018-05-20 11:34:31", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("395", "1", "2018-05-20 11:32:14", "2018-05-20 11:32:14", "", "Bridgewater Rammed Earth Renovation", "", "inherit", "open", "closed", "", "7", "", "", "2018-05-20 11:34:37", "2018-05-20 11:34:37", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/7.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("396", "1", "2018-05-20 11:32:15", "2018-05-20 11:32:15", "", "Bridgewater Rammed Earth Renovation", "", "inherit", "open", "closed", "", "8", "", "", "2018-05-20 11:34:40", "2018-05-20 11:34:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/8.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("397", "1", "2018-05-20 11:32:17", "2018-05-20 11:32:17", "", "Bridgewater Rammed Earth Renovation", "", "inherit", "open", "closed", "", "9", "", "", "2018-05-20 11:34:45", "2018-05-20 11:34:45", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/9.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("398", "1", "2018-05-20 11:32:18", "2018-05-20 11:32:18", "", "Bridgewater Rammed Earth Renovation", "", "inherit", "open", "closed", "", "10", "", "", "2018-05-20 11:34:51", "2018-05-20 11:34:51", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/10.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("399", "1", "2018-05-20 11:32:19", "2018-05-20 11:32:19", "", "Bridgewater Rammed Earth Renovation", "", "inherit", "open", "closed", "", "13", "", "", "2018-05-20 11:34:54", "2018-05-20 11:34:54", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/13.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("400", "1", "2018-05-20 11:32:20", "2018-05-20 11:32:20", "", "Bridgewater Rammed Earth Renovation", "", "inherit", "open", "closed", "", "outdoor-3", "", "", "2018-05-20 11:34:57", "2018-05-20 11:34:57", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/outdoor-3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("401", "1", "2018-05-20 11:35:09", "2018-05-20 11:35:09", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|39px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Bridgewater Rammed Earth Renovation</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"392,393,394,395,396,397,398,399,400\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Bridgewater Rammed Earth Renovation", "", "inherit", "closed", "closed", "", "389-revision-v1", "", "", "2018-05-20 11:35:09", "2018-05-20 11:35:09", "", "389", "https://beyondink.alluredigitalmarketing.com.au/389-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("413", "1", "2018-06-10 09:16:00", "2018-06-10 09:16:00", "", "Bridgewater Residence", "", "inherit", "open", "closed", "", "img_6211-800x533", "", "", "2018-06-10 09:16:18", "2018-06-10 09:16:18", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6211-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("445", "1", "2018-06-10 09:40:22", "2018-06-10 09:40:22", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Aldgate Renovation</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"433,434,435,436,437,438,439,440,441,442,443,444\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Aldgate Renovation", "", "inherit", "closed", "closed", "", "426-revision-v1", "", "", "2018-06-10 09:40:22", "2018-06-10 09:40:22", "", "426", "https://beyondink.alluredigitalmarketing.com.au/426-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("414", "1", "2018-06-10 09:23:49", "2018-06-10 09:23:49", "", "Kensington Garden Residence", "", "inherit", "open", "closed", "", "kensingtons-garden-residence", "", "", "2018-06-10 09:50:17", "2018-06-10 09:50:17", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("417", "1", "2018-06-10 09:27:57", "2018-06-10 09:27:57", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Exterior-3-of-6-800x535.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Residential Projects</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Bell-Crt-4-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/adelaide-hills-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Adelaide Hills Residence</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-800x533.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Aldgate House Renovation</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/425573_318529888182665_1787921071_n-1.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Battunga Residence</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6211-800x533.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Bridgewater Residence</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/6.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Bridgewater Rammed Earth Renovation</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/The-Latch-Atkinson-Rd-Crafers-West-5-800x532.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Crafers Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/305653_359854987383488_1833829054_n-1.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Echunga Residence</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/399949_317440688291585_1511337278_n-1.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Jupter Creek Residence</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Kensington Gardens Residence</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/IMG_0623-800x533.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Littlehampton Renovation and Additions</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/14-800x533.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Totness Residence</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Residential", "", "inherit", "closed", "closed", "", "152-revision-v1", "", "", "2018-06-10 09:27:57", "2018-06-10 09:27:57", "", "152", "https://beyondink.alluredigitalmarketing.com.au/152-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("415", "1", "2018-06-10 09:24:20", "2018-06-10 09:24:20", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Exterior-3-of-6-800x535.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Residential Projects</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"92px|0px|27px|0px\" admin_label=\"Blog Posts Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"156,158,159,163,161,160,170,169,162,164,165,166\" gallery_captions=\",,,,,,,,,,,\" posts_number=\"14\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.49)\" box_shadow_style_image=\"preset1\" box_shadow_blur_image=\"23px\" _builder_version=\"3.0.106\" title_font=\"||||||||\" title_text_color=\"#000000\" pagination_font=\"||||||||\" custom_margin=\"|||\"][/et_pb_gallery][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Bell-Crt-4-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/adelaide-hills-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Adelaide Hills Residence</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-800x533.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Aldgate House Renovation</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/425573_318529888182665_1787921071_n-1.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Battunga Residence</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6211-800x533.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Bridgewater Residence</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/6.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Bridgewater Rammed Earth Renovation</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/The-Latch-Atkinson-Rd-Crafers-West-5-800x532.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Crafers Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/305653_359854987383488_1833829054_n-1.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Echunga Residence</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/399949_317440688291585_1511337278_n-1.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Jupter Creek Residence</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Kensington Gardens Residence</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/The-Latch-Atkinson-Rd-Crafers-West-5-800x532.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Crafers Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/305653_359854987383488_1833829054_n-1.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Echunga Residence</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/399949_317440688291585_1511337278_n-1.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Jupter Creek Residence</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Residential", "", "inherit", "closed", "closed", "", "152-revision-v1", "", "", "2018-06-10 09:24:20", "2018-06-10 09:24:20", "", "152", "https://beyondink.alluredigitalmarketing.com.au/152-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("435", "1", "2018-06-10 09:37:46", "2018-06-10 09:37:46", "", "Aldgate Renovation", "", "inherit", "open", "closed", "", "12-800x533-2", "", "", "2018-06-10 09:39:45", "2018-06-10 09:39:45", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/12-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("436", "1", "2018-06-10 09:37:49", "2018-06-10 09:37:49", "", "Aldgate Renovation", "", "inherit", "open", "closed", "", "13-800x533-2", "", "", "2018-06-10 09:39:42", "2018-06-10 09:39:42", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/13-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("437", "1", "2018-06-10 09:37:51", "2018-06-10 09:37:51", "", "Aldgate Renovation", "", "inherit", "open", "closed", "", "img_0209-800x533", "", "", "2018-06-10 09:39:39", "2018-06-10 09:39:39", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0209-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("438", "1", "2018-06-10 09:37:53", "2018-06-10 09:37:53", "", "Aldgate Renovation", "", "inherit", "open", "closed", "", "img_0214-800x533", "", "", "2018-06-10 09:39:37", "2018-06-10 09:39:37", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0214-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("439", "1", "2018-06-10 09:37:56", "2018-06-10 09:37:56", "", "Aldgate Renovation", "", "inherit", "open", "closed", "", "img_0224-800x533", "", "", "2018-06-10 09:39:34", "2018-06-10 09:39:34", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0224-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("440", "1", "2018-06-10 09:37:59", "2018-06-10 09:37:59", "", "Aldgate Renovation", "", "inherit", "open", "closed", "", "img_0229-800x533", "", "", "2018-06-10 09:39:31", "2018-06-10 09:39:31", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0229-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("441", "1", "2018-06-10 09:38:11", "2018-06-10 09:38:11", "", "Aldgate Renovation", "", "inherit", "open", "closed", "", "img_0231-800x533", "", "", "2018-06-10 09:39:29", "2018-06-10 09:39:29", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0231-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("442", "1", "2018-06-10 09:38:16", "2018-06-10 09:38:16", "", "Aldgate Renovation", "", "inherit", "open", "closed", "", "img_0234-800x533", "", "", "2018-06-10 09:39:26", "2018-06-10 09:39:26", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0234-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("443", "1", "2018-06-10 09:38:19", "2018-06-10 09:38:19", "", "Aldgate Renovation", "", "inherit", "open", "closed", "", "img_0237-800x533", "", "", "2018-06-10 09:39:21", "2018-06-10 09:39:21", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0237-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("444", "1", "2018-06-10 09:38:22", "2018-06-10 09:38:22", "", "Aldgate Renovation", "", "inherit", "open", "closed", "", "img_0240-800x533", "", "", "2018-06-10 09:39:16", "2018-06-10 09:39:16", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0240-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1431", "1", "2018-07-24 12:31:54", "2018-07-24 12:31:54", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>The Haus Hahndorf</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading &amp; Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n\r\nThe Haus Restaurant, on the main street of Hahndorf, is owned and operated by the Duffield family. We\'ve had the pleasure of working with the Duffield\'s on various projects over the past 25 years - including various hospitality and accommodation venues; and now the refurbishment of those same venues.\r\n\r\n<strong>Our Involvement: Project Management, Cost Control, Town Planning</strong>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading &amp; Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n\r\nThe Haus hosts a lot of conferences and functions, as well as provides catering off-site. And they\'ve <span style=\"font-size: 18px;\">just been awarded Venue Caterer of the Year at the 2018 Savour Australia Restaurant and Catering Awards.</span>\r\n\r\nHint: when you visit the restaurant make sure you check out the murals which have been stencilled on the walls - they tell a story of the history of Hahndorf. They show the ships arriving, residents tending to crops, a <a href=\"../the-manna-motel-of-hahndorf/\">pear tree</a>, and more.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "The Haus Hahndorf", "", "inherit", "closed", "closed", "", "600-revision-v1", "", "", "2018-07-24 12:31:54", "2018-07-24 12:31:54", "", "600", "https://beyondink.alluredigitalmarketing.com.au/600-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1400", "1", "2018-07-24 11:52:26", "2018-07-24 11:52:26", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Littlehampton Renovation and Additions</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#F1F1F1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>This residential project included significant alterations and additions to the existing dwelling.</p>\n<p><strong>Our Involvement: Design, Project Management, Town Planning, Cost Control</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1395,1396,1397,1398\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Littlehampton Renovation and Additions", "", "inherit", "closed", "closed", "", "474-revision-v1", "", "", "2018-07-24 11:52:26", "2018-07-24 11:52:26", "", "474", "https://beyondink.alluredigitalmarketing.com.au/474-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1034", "1", "2018-07-18 10:44:24", "2018-07-18 10:44:24", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Littlehampton Renovation and Additions</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row background_color=\"#F1F1F1\" _builder_version=\"3.0.106\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>This residential project included significant alterations and additions to the existing dwelling.</p>\n<p><strong>Our Involvement: Design, Project Management, Town Planning, Cost Control</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"479,481,482,483,485,486,487,488,489,490,491,492\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Littlehampton Renovation and Additions", "", "inherit", "closed", "closed", "", "474-revision-v1", "", "", "2018-07-18 10:44:24", "2018-07-18 10:44:24", "", "474", "https://beyondink.alluredigitalmarketing.com.au/474-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1035", "1", "2018-07-18 10:46:19", "2018-07-18 10:46:19", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|34px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Jupiter Creek Country Residence</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row background_color=\"#f1f1f1\" _builder_version=\"3.0.106\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p><strong>Our Involvement: Design, Town Planning</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"381,382,383,384,385,386\" gallery_orderby=\"rand\" gallery_captions=\",,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Jupiter Creek Residence", "", "inherit", "closed", "closed", "", "378-revision-v1", "", "", "2018-07-18 10:46:19", "2018-07-18 10:46:19", "", "378", "https://beyondink.alluredigitalmarketing.com.au/378-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("423", "1", "2018-06-10 09:31:09", "2018-06-10 09:31:09", "<p>[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]</p><h1>Totness Residence</h1><p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"341,342,343,344,345,346,347,348,349,350,351,352,353\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]</p>", "Totness Residence", "", "inherit", "closed", "closed", "", "339-autosave-v1", "", "", "2018-06-10 09:31:09", "2018-06-10 09:31:09", "", "339", "https://beyondink.alluredigitalmarketing.com.au/339-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("424", "1", "2018-06-10 09:31:18", "2018-06-10 09:31:18", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Exterior-3-of-6-800x535.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Residential Projects</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Bell-Crt-4-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/adelaide-hills-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Adelaide Hills Residence</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-800x533.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Aldgate House Renovation</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/425573_318529888182665_1787921071_n-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/battunga-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Battunga Residence</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6211-800x533.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Bridgewater Residence</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/6.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/bridgewater-rammed-earth-renovation/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Bridgewater Rammed Earth Renovation</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/The-Latch-Atkinson-Rd-Crafers-West-5-800x532.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/crafers-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Crafers Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/305653_359854987383488_1833829054_n-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/echunga-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Echunga Residence</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/399949_317440688291585_1511337278_n-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/jupiter-creek-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Jupter Creek Residence</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Kensington Gardens Residence</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/IMG_0623-800x533.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Littlehampton Renovation and Additions</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/14-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/totness-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Totness Residence</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Residential", "", "inherit", "closed", "closed", "", "152-revision-v1", "", "", "2018-06-10 09:31:18", "2018-06-10 09:31:18", "", "152", "https://beyondink.alluredigitalmarketing.com.au/152-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("426", "1", "2018-06-10 09:33:34", "2018-06-10 09:33:34", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Aldgate Renovation</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row background_color=\"#f1f1f1\" _builder_version=\"3.0.106\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p><strong>Our Involvement: Design, Town Planning</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"433,434,435,436,437,438,439,440,441,442,443,444\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Aldgate Renovation", "", "publish", "closed", "closed", "", "aldgate-renovation", "", "", "2018-07-18 10:49:38", "2018-07-18 10:49:38", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=426", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("431", "1", "2018-06-10 09:35:35", "2018-06-10 09:35:35", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Aldgate Renovation</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235,250,246\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Aldgate Renovation", "", "inherit", "closed", "closed", "", "426-revision-v1", "", "", "2018-06-10 09:35:35", "2018-06-10 09:35:35", "", "426", "https://beyondink.alluredigitalmarketing.com.au/426-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("447", "1", "2018-06-10 09:41:48", "2018-06-10 09:41:48", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Exterior-3-of-6-800x535.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Residential Projects</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Bell-Crt-4-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/adelaide-hills-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Adelaide Hills Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-800x533.jpg\" _builder_version=\"3.0.106\" url=\"https://beyondink.alluredigitalmarketing.com.au/aldgate-renovation/\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Aldgate Renovation</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/425573_318529888182665_1787921071_n-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/battunga-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Battunga Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6211-800x533.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Bridgewater Residence</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/6.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/bridgewater-rammed-earth-renovation/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Bridgewater Rammed Earth Renovation</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/The-Latch-Atkinson-Rd-Crafers-West-5-800x532.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/crafers-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Crafers Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/305653_359854987383488_1833829054_n-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/echunga-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Echunga Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/399949_317440688291585_1511337278_n-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/jupiter-creek-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Jupter Creek Residence</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Kensington Gardens Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/IMG_0623-800x533.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Littlehampton Renovation and Additions</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/14-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/totness-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Totness Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Residential", "", "inherit", "closed", "closed", "", "152-revision-v1", "", "", "2018-06-10 09:41:48", "2018-06-10 09:41:48", "", "152", "https://beyondink.alluredigitalmarketing.com.au/152-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("448", "1", "2018-06-10 09:42:47", "2018-06-10 09:42:47", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Bridgewater Residence</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p><strong>Our Involvement: Design</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"452,453,454,455,456,457,458,459\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Bridgewater Residence", "", "publish", "closed", "closed", "", "bridgewater-residence", "", "", "2018-07-24 12:32:43", "2018-07-24 12:32:43", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=448", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("462", "1", "2018-06-10 09:47:28", "2018-06-10 09:47:28", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Kensington Gardens Residence</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"466,467,468,469,414\" gallery_orderby=\"rand\" gallery_captions=\",,,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Kensington Gardens Residence", "", "publish", "closed", "closed", "", "kensington-gardens", "", "", "2018-07-24 12:34:33", "2018-07-24 12:34:33", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=462", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("450", "1", "2018-06-10 09:42:47", "2018-06-10 09:42:47", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#9dd00f\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"27px|0px|11px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Crafers Residence</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\" prev_background_color=\"#9dd00f\" next_background_color=\"#000000\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235,250,246\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\" prev_background_color=\"#000000\"][et_pb_fullwidth_image _builder_version=\"3.0.106\" /][/et_pb_section]", "Bridgewater Residence", "", "inherit", "closed", "closed", "", "448-revision-v1", "", "", "2018-06-10 09:42:47", "2018-06-10 09:42:47", "", "448", "https://beyondink.alluredigitalmarketing.com.au/448-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("461", "1", "2018-06-10 09:46:14", "2018-06-10 09:46:14", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Exterior-3-of-6-800x535.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Residential Projects</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Bell-Crt-4-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/adelaide-hills-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Adelaide Hills Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-800x533.jpg\" _builder_version=\"3.0.106\" url=\"https://beyondink.alluredigitalmarketing.com.au/aldgate-renovation/\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Aldgate Renovation</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/425573_318529888182665_1787921071_n-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/battunga-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Battunga Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6211-800x533.jpg\" _builder_version=\"3.0.106\" url=\"https://beyondink.alluredigitalmarketing.com.au/bridgewater-residence/\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Bridgewater Residence</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/6.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/bridgewater-rammed-earth-renovation/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Bridgewater Rammed Earth Renovation</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/The-Latch-Atkinson-Rd-Crafers-West-5-800x532.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/crafers-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Crafers Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/305653_359854987383488_1833829054_n-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/echunga-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Echunga Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/399949_317440688291585_1511337278_n-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/jupiter-creek-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Jupter Creek Residence</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Kensington Gardens Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/IMG_0623-800x533.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Littlehampton Renovation and Additions</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/14-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/totness-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Totness Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Residential", "", "inherit", "closed", "closed", "", "152-revision-v1", "", "", "2018-06-10 09:46:14", "2018-06-10 09:46:14", "", "152", "https://beyondink.alluredigitalmarketing.com.au/152-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("452", "1", "2018-06-10 09:43:44", "2018-06-10 09:43:44", "", "Bridgewater Residence", "", "inherit", "open", "closed", "", "img_6058-800x533", "", "", "2018-06-10 09:44:58", "2018-06-10 09:44:58", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6058-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("453", "1", "2018-06-10 09:43:48", "2018-06-10 09:43:48", "", "Bridgewater Residence", "", "inherit", "open", "closed", "", "img_6071-800x533", "", "", "2018-06-10 09:44:55", "2018-06-10 09:44:55", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6071-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("454", "1", "2018-06-10 09:43:52", "2018-06-10 09:43:52", "", "Bridgewater Residence", "", "inherit", "open", "closed", "", "img_6089-800x533", "", "", "2018-06-10 09:44:52", "2018-06-10 09:44:52", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6089-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("455", "1", "2018-06-10 09:43:57", "2018-06-10 09:43:57", "", "Bridgewater Residence", "", "inherit", "open", "closed", "", "img_6099-hdr-800x533", "", "", "2018-06-10 09:44:49", "2018-06-10 09:44:49", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6099-HDR-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("456", "1", "2018-06-10 09:44:00", "2018-06-10 09:44:00", "", "Bridgewater Residence", "", "inherit", "open", "closed", "", "img_6106-hdr-800x533", "", "", "2018-06-10 09:44:46", "2018-06-10 09:44:46", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6106-HDR-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("457", "1", "2018-06-10 09:44:04", "2018-06-10 09:44:04", "", "Bridgewater Residence", "", "inherit", "open", "closed", "", "img_6155-hdr-800x533", "", "", "2018-06-10 09:44:43", "2018-06-10 09:44:43", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6155-HDR-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("458", "1", "2018-06-10 09:44:08", "2018-06-10 09:44:08", "", "Bridgewater Residence", "", "inherit", "open", "closed", "", "img_6169-800x533", "", "", "2018-06-10 09:44:38", "2018-06-10 09:44:38", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6169-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("459", "1", "2018-06-10 09:44:12", "2018-06-10 09:44:12", "", "Bridgewater Residence", "", "inherit", "open", "closed", "", "img_6211-800x533-2", "", "", "2018-06-10 09:44:34", "2018-06-10 09:44:34", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6211-800x533-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("460", "1", "2018-06-10 09:45:25", "2018-06-10 09:45:25", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Bridgewater Residence</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"452,453,454,455,456,457,458,459\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Bridgewater Residence", "", "inherit", "closed", "closed", "", "448-revision-v1", "", "", "2018-06-10 09:45:25", "2018-06-10 09:45:25", "", "448", "https://beyondink.alluredigitalmarketing.com.au/448-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("474", "1", "2018-06-10 09:52:47", "2018-06-10 09:52:47", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Littlehampton Renovation and Additions</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#F1F1F1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>This residential project included significant alterations and additions to the existing dwelling.</p>\n<p><strong>Our Involvement: Design, Project Management, Town Planning, Cost Control</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1395,1396,1397,1398\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Littlehampton Renovation and Additions", "", "publish", "closed", "closed", "", "littlehampton-renovation-additions", "", "", "2018-07-24 11:52:26", "2018-07-24 11:52:26", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=474", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("464", "1", "2018-06-10 09:47:28", "2018-06-10 09:47:28", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#9dd00f\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"27px|0px|11px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Crafers Residence</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\" prev_background_color=\"#9dd00f\" next_background_color=\"#000000\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235,250,246\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\" prev_background_color=\"#000000\"][et_pb_fullwidth_image _builder_version=\"3.0.106\" /][/et_pb_section]", "Kensington Gardens Residence", "", "inherit", "closed", "closed", "", "462-revision-v1", "", "", "2018-06-10 09:47:28", "2018-06-10 09:47:28", "", "462", "https://beyondink.alluredigitalmarketing.com.au/462-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("466", "1", "2018-06-10 09:49:16", "2018-06-10 09:49:16", "", "Kensington Garden Residence", "", "inherit", "open", "closed", "", "kensingtons-garden-residence-2", "", "", "2018-06-10 09:50:11", "2018-06-10 09:50:11", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("467", "1", "2018-06-10 09:49:16", "2018-06-10 09:49:16", "", "Kensington Garden Residence", "", "inherit", "open", "closed", "", "kensingtons-garden-residence-3", "", "", "2018-06-10 09:50:08", "2018-06-10 09:50:08", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence-3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("468", "1", "2018-06-10 09:49:18", "2018-06-10 09:49:18", "", "Kensington Garden Residence", "", "inherit", "open", "closed", "", "kensingtons-garden-residence-4", "", "", "2018-06-10 09:50:04", "2018-06-10 09:50:04", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence-4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("469", "1", "2018-06-10 09:49:19", "2018-06-10 09:49:19", "", "Kensington Garden Residence", "", "inherit", "open", "closed", "", "kensingtons-garden-residence-5", "", "", "2018-06-10 09:49:58", "2018-06-10 09:49:58", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence-5.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("470", "1", "2018-06-10 09:51:03", "2018-06-10 09:51:03", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Kensington Gardens Residence</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"466,467,468,469,414\" gallery_orderby=\"rand\" gallery_captions=\",,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Kensington Gardens Residence", "", "inherit", "closed", "closed", "", "462-revision-v1", "", "", "2018-06-10 09:51:03", "2018-06-10 09:51:03", "", "462", "https://beyondink.alluredigitalmarketing.com.au/462-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1436", "1", "2018-07-24 12:34:33", "2018-07-24 12:34:33", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Kensington Gardens Residence</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"466,467,468,469,414\" gallery_orderby=\"rand\" gallery_captions=\",,,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Kensington Gardens Residence", "", "inherit", "closed", "closed", "", "462-revision-v1", "", "", "2018-07-24 12:34:33", "2018-07-24 12:34:33", "", "462", "https://beyondink.alluredigitalmarketing.com.au/462-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("473", "1", "2018-06-10 09:51:26", "2018-06-10 09:51:26", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Exterior-3-of-6-800x535.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Residential Projects</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Bell-Crt-4-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/adelaide-hills-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Adelaide Hills Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-800x533.jpg\" _builder_version=\"3.0.106\" url=\"https://beyondink.alluredigitalmarketing.com.au/aldgate-renovation/\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Aldgate Renovation</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/425573_318529888182665_1787921071_n-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/battunga-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Battunga Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6211-800x533.jpg\" _builder_version=\"3.0.106\" url=\"https://beyondink.alluredigitalmarketing.com.au/bridgewater-residence/\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Bridgewater Residence</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/6.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/bridgewater-rammed-earth-renovation/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Bridgewater Rammed Earth Renovation</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/The-Latch-Atkinson-Rd-Crafers-West-5-800x532.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/crafers-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Crafers Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/305653_359854987383488_1833829054_n-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/echunga-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Echunga Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/399949_317440688291585_1511337278_n-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/jupiter-creek-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Jupter Creek Residence</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence.jpg\" _builder_version=\"3.0.106\" url=\"https://beyondink.alluredigitalmarketing.com.au/kensington-gardens/\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Kensington Gardens Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/IMG_0623-800x533.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Littlehampton Renovation and Additions</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/14-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/totness-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Totness Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Residential", "", "inherit", "closed", "closed", "", "152-revision-v1", "", "", "2018-06-10 09:51:26", "2018-06-10 09:51:26", "", "152", "https://beyondink.alluredigitalmarketing.com.au/152-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("496", "1", "2018-06-10 10:01:47", "2018-06-10 10:01:47", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Exterior-3-of-6-800x535.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Residential Projects</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Bell-Crt-4-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/adelaide-hills-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Adelaide Hills Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/aldgate-renovation/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Aldgate Renovation</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/425573_318529888182665_1787921071_n-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/battunga-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Battunga Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6211-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/bridgewater-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Bridgewater Residence</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/6.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/bridgewater-rammed-earth-renovation/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Bridgewater Rammed Earth Renovation</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/The-Latch-Atkinson-Rd-Crafers-West-5-800x532.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/crafers-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Crafers Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/305653_359854987383488_1833829054_n-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/echunga-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Echunga Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/399949_317440688291585_1511337278_n-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/jupiter-creek-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Jupiter Creek Residence</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/kensington-gardens/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Kensington Gardens Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/IMG_0623-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/littlehampton-renovation-additions/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Littlehampton Renovation and Additions</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/14-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/totness-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Totness Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Residential", "", "inherit", "closed", "closed", "", "152-revision-v1", "", "", "2018-06-10 10:01:47", "2018-06-10 10:01:47", "", "152", "https://beyondink.alluredigitalmarketing.com.au/152-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("476", "1", "2018-06-10 09:52:47", "2018-06-10 09:52:47", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#9dd00f\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"27px|0px|11px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Crafers Residence</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\" prev_background_color=\"#9dd00f\" next_background_color=\"#000000\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235,250,246\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\" prev_background_color=\"#000000\"][et_pb_fullwidth_image _builder_version=\"3.0.106\" /][/et_pb_section]", "Littlehampton Renovation and Additions", "", "inherit", "closed", "closed", "", "474-revision-v1", "", "", "2018-06-10 09:52:47", "2018-06-10 09:52:47", "", "474", "https://beyondink.alluredigitalmarketing.com.au/474-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1038", "1", "2018-07-18 10:47:38", "2018-07-18 10:47:38", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Bridgewater Residence</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row background_color=\"#f1f1f1\" _builder_version=\"3.0.106\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p><strong>Our Involvement: Design</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"452,453,454,455,456,457,458,459\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Bridgewater Residence", "", "inherit", "closed", "closed", "", "448-revision-v1", "", "", "2018-07-18 10:47:38", "2018-07-18 10:47:38", "", "448", "https://beyondink.alluredigitalmarketing.com.au/448-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("478", "1", "2018-06-10 09:55:52", "2018-06-10 09:55:52", "", "Littlehampton Renovation and Additions", "", "inherit", "open", "closed", "", "el-1-800x533", "", "", "2018-06-10 09:58:14", "2018-06-10 09:58:14", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/EL-1-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("479", "1", "2018-06-10 09:55:57", "2018-06-10 09:55:57", "", "Littlehampton Renovation and Additions", "", "inherit", "open", "closed", "", "el-3-800x533", "", "", "2018-06-10 09:59:06", "2018-06-10 09:59:06", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/EL-3-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("480", "1", "2018-06-10 09:56:01", "2018-06-10 09:56:01", "", "Littlehampton Renovation and Additions", "", "inherit", "open", "closed", "", "img_0590-800x533", "", "", "2018-06-10 09:59:03", "2018-06-10 09:59:03", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0590-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("481", "1", "2018-06-10 09:56:05", "2018-06-10 09:56:05", "", "Littlehampton Renovation and Additions", "", "inherit", "open", "closed", "", "img_0591-800x533", "", "", "2018-06-10 09:58:59", "2018-06-10 09:58:59", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0591-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("482", "1", "2018-06-10 09:56:08", "2018-06-10 09:56:08", "", "Littlehampton Renovation and Additions", "", "inherit", "open", "closed", "", "img_0597-800x533", "", "", "2018-06-10 09:58:57", "2018-06-10 09:58:57", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0597-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("483", "1", "2018-06-10 09:56:11", "2018-06-10 09:56:11", "", "Littlehampton Renovation and Additions", "", "inherit", "open", "closed", "", "img_0599-800x533", "", "", "2018-06-10 09:58:52", "2018-06-10 09:58:52", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0599-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("484", "1", "2018-06-10 09:56:15", "2018-06-10 09:56:15", "", "Littlehampton Renovation and Additions", "", "inherit", "open", "closed", "", "img_0606-800x533", "", "", "2018-06-10 09:58:48", "2018-06-10 09:58:48", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0606-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("485", "1", "2018-06-10 09:56:18", "2018-06-10 09:56:18", "", "Littlehampton Renovation and Additions", "", "inherit", "open", "closed", "", "img_0608-800x533", "", "", "2018-06-10 09:58:44", "2018-06-10 09:58:44", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0608-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("486", "1", "2018-06-10 09:56:21", "2018-06-10 09:56:21", "", "Littlehampton Renovation and Additions", "", "inherit", "open", "closed", "", "img_0610-800x533", "", "", "2018-06-10 09:58:40", "2018-06-10 09:58:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0610-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("487", "1", "2018-06-10 09:56:24", "2018-06-10 09:56:24", "", "Littlehampton Renovation and Additions", "", "inherit", "open", "closed", "", "img_0612-800x533", "", "", "2018-06-10 09:58:37", "2018-06-10 09:58:37", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0612-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("488", "1", "2018-06-10 09:56:27", "2018-06-10 09:56:27", "", "Littlehampton Renovation and Additions", "", "inherit", "open", "closed", "", "img_0621-800x533", "", "", "2018-06-10 09:58:33", "2018-06-10 09:58:33", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0621-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("489", "1", "2018-06-10 09:56:30", "2018-06-10 09:56:30", "", "Littlehampton Renovation and Additions", "", "inherit", "open", "closed", "", "img_0626-800x492", "", "", "2018-06-10 09:58:30", "2018-06-10 09:58:30", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0626-800x492.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("490", "1", "2018-06-10 09:56:44", "2018-06-10 09:56:44", "", "Littlehampton Renovation and Additions", "", "inherit", "open", "closed", "", "bath-1-800x533", "", "", "2018-06-10 09:58:26", "2018-06-10 09:58:26", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Bath-1-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("491", "1", "2018-06-10 09:57:13", "2018-06-10 09:57:13", "", "Littlehampton Renovation and Additions", "", "inherit", "open", "closed", "", "img_0615-800x533", "", "", "2018-06-10 09:58:22", "2018-06-10 09:58:22", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0615-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("492", "1", "2018-06-10 09:57:49", "2018-06-10 09:57:49", "", "Littlehampton Renovation and Additions", "", "inherit", "open", "closed", "", "img_0593-800x533", "", "", "2018-06-10 09:58:18", "2018-06-10 09:58:18", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0593-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("493", "1", "2018-06-10 09:59:59", "2018-06-10 09:59:59", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Littlehampton Renovation and Additions</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"479,481,482,483,485,486,487,488,489,490,491,492\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Littlehampton Renovation and Additions", "", "inherit", "closed", "closed", "", "474-revision-v1", "", "", "2018-06-10 09:59:59", "2018-06-10 09:59:59", "", "474", "https://beyondink.alluredigitalmarketing.com.au/474-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("505", "1", "2018-06-10 10:16:17", "2018-06-10 10:16:17", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Exterior-3-of-6-800x535.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Residential Projects</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Bell-Crt-4-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/adelaide-hills-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Adelaide Hills Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/aldgate-renovation/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Aldgate Renovation</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Battunga-Residence.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/battunga-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Battunga Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6211-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/bridgewater-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Bridgewater Residence</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/6.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/bridgewater-rammed-earth-renovation/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Bridgewater Rammed Earth Renovation</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/The-Latch-Atkinson-Rd-Crafers-West-5-800x532.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/crafers-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Crafers Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Echunga-Residence.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/echunga-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Echunga Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Jupiter-Creek-Residence.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/jupiter-creek-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Jupiter Creek Residence</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence-6.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/kensington-gardens/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Kensington Gardens Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/IMG_0623-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/littlehampton-renovation-additions/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Littlehampton Renovation and Additions</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/14-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/totness-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Totness Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Residential", "", "inherit", "closed", "closed", "", "152-revision-v1", "", "", "2018-06-10 10:16:17", "2018-06-10 10:16:17", "", "152", "https://beyondink.alluredigitalmarketing.com.au/152-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("495", "1", "2018-06-10 10:00:45", "2018-06-10 10:00:45", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Exterior-3-of-6-800x535.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Residential Projects</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Bell-Crt-4-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/adelaide-hills-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Adelaide Hills Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-800x533.jpg\" _builder_version=\"3.0.106\" url=\"https://beyondink.alluredigitalmarketing.com.au/aldgate-renovation/\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Aldgate Renovation</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/425573_318529888182665_1787921071_n-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/battunga-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Battunga Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6211-800x533.jpg\" _builder_version=\"3.0.106\" url=\"https://beyondink.alluredigitalmarketing.com.au/bridgewater-residence/\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Bridgewater Residence</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/6.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/bridgewater-rammed-earth-renovation/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Bridgewater Rammed Earth Renovation</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/The-Latch-Atkinson-Rd-Crafers-West-5-800x532.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/crafers-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Crafers Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/305653_359854987383488_1833829054_n-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/echunga-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Echunga Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/399949_317440688291585_1511337278_n-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/jupiter-creek-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Jupter Creek Residence</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence.jpg\" _builder_version=\"3.0.106\" url=\"https://beyondink.alluredigitalmarketing.com.au/kensington-gardens/\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Kensington Gardens Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/IMG_0623-800x533.jpg\" _builder_version=\"3.0.106\" url=\"https://beyondink.alluredigitalmarketing.com.au/littlehampton-renovation-additions/\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Littlehampton Renovation and Additions</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/14-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/totness-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Totness Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Residential", "", "inherit", "closed", "closed", "", "152-revision-v1", "", "", "2018-06-10 10:00:45", "2018-06-10 10:00:45", "", "152", "https://beyondink.alluredigitalmarketing.com.au/152-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("510", "1", "2018-06-10 10:19:05", "2018-06-10 10:19:05", "", "The Lane Winery", "", "inherit", "open", "closed", "", "the-lane-winery", "", "", "2018-06-10 10:19:05", "2018-06-10 10:19:05", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Lane-Winery.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("511", "1", "2018-06-10 10:20:43", "2018-06-10 10:20:43", "", "The Haus Hahndorf", "", "inherit", "open", "closed", "", "the-haus-hahndorf", "", "", "2018-06-10 10:20:43", "2018-06-10 10:20:43", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Hahndorf.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("512", "1", "2018-06-10 10:21:50", "2018-06-10 10:21:50", "", "The Haus Studio Apartments", "", "inherit", "open", "closed", "", "the-haus-studio-apartments", "", "", "2018-06-10 10:21:50", "2018-06-10 10:21:50", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Studio-Apartments.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("551", "1", "2018-06-10 10:49:34", "2018-06-10 10:49:34", "", "K1 Winery", "", "inherit", "open", "closed", "", "k1-winery-2", "", "", "2018-06-10 10:56:46", "2018-06-10 10:56:46", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/K1-Winery-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("507", "1", "2018-06-10 10:17:00", "2018-06-10 10:17:00", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/North-East-Corner-Dulux-Gunmetal-Kinetic.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Commercial Projects</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row _builder_version=\"3.0.106\" custom_padding=\"50px|0px|27px|0px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_3605-800x600.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Lane Winery</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Barker-Plaza-Entrance-800x534.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Barker Plaza Shopping Centre</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-2-1.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Haus Cafe+Bar+Kitchen</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/img_26711.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Haus Studio Apartments</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/K1-2.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">K1 Winery</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/55708_165645590125507_7049646_o.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Manna Motel of Hahndorf</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/img_2879.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Inavogue Showroom</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Pulteney-Plaza-800x600.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Pulteney Plaza Apartments</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/img_3053.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Rivercorp Monarto Apple Processing Facility</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/imported-08-02-2015-1087.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Elders Strathalbyn</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Commercial", "", "inherit", "closed", "closed", "", "175-revision-v1", "", "", "2018-06-10 10:17:00", "2018-06-10 10:17:00", "", "175", "https://beyondink.alluredigitalmarketing.com.au/175-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("504", "1", "2018-06-10 10:16:03", "2018-06-10 10:16:03", "", "Kensington Garden Residence 6", "", "inherit", "open", "closed", "", "kensingtons-garden-residence-6", "", "", "2018-06-10 10:16:09", "2018-06-10 10:16:09", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence-6.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("541", "1", "2018-06-10 10:45:19", "2018-06-10 10:45:19", "", "Inavogue Showroom", "", "inherit", "open", "closed", "", "inavogue-showroom-2", "", "", "2018-06-10 10:46:55", "2018-06-10 10:46:55", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Inavogue-Showroom-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("568", "1", "2018-06-10 11:01:48", "2018-06-10 11:01:48", "", "Pulteney Plaza Apartments 2", "", "inherit", "open", "closed", "", "pulteney-plaza-apartments-2", "", "", "2018-06-10 11:01:48", "2018-06-10 11:01:48", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Pulteney-Plaza-Apartments-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("516", "1", "2018-06-10 10:28:52", "2018-06-10 10:28:52", "", "Rivercorp Monarto Apple Processing Plant", "", "inherit", "open", "closed", "", "rivercorp-monarto-apple-processing-plant", "", "", "2018-06-10 10:28:52", "2018-06-10 10:28:52", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Rivercorp-Monarto-Apple-Processing-Plant.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("519", "1", "2018-06-10 10:32:28", "2018-06-10 10:32:28", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Barker Plaza Shopping Centre</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The Barker Plaza Shopping Centre had started to become tired and dated. With Aldi Supermarkets moving in to the centre, the property owner engaged us to give the whole shopping centre a revamp.</p>\n<p><strong>Our Involvement: Design, Project Management, Interior Design, Town Planning, Cost Control</strong></p>\n<p>Builder: <a href=\"http://bellabuildanddesign.com.au/\" target=\"_blank\" rel=\"noopener noreferrer\">Bella Build &amp; Design</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"522,523,524,525\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Barker Plaza Shopping Centre", "", "publish", "closed", "closed", "", "barker-plaza", "", "", "2018-07-24 12:23:19", "2018-07-24 12:23:19", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=519", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("532", "1", "2018-06-10 10:39:01", "2018-06-10 10:39:01", "", "Elders Strathalbyn", "", "inherit", "open", "closed", "", "elders-strathalbyn-2", "", "", "2018-06-10 10:40:26", "2018-06-10 10:40:26", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Elders-Strathalbyn-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("518", "1", "2018-06-10 10:30:12", "2018-06-10 10:30:12", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/North-East-Corner-Dulux-Gunmetal-Kinetic.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Commercial Projects</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row _builder_version=\"3.0.106\" custom_padding=\"50px|0px|27px|0px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Lane-Winery.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Lane Winery</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Barker-Plaza-Entrance-800x534.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Barker Plaza Shopping Centre</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Hahndorf.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Haus Cafe+Bar+Kitchen</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Studio-Apartments.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Haus Studio Apartments</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/K1-Winery.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">K1 Winery</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/55708_165645590125507_7049646_o.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Manna Motel of Hahndorf</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Inavogue-Showroom.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Inavogue Showroom</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Pulteney-Plaza-Apartments.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Pulteney Plaza Apartments</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Rivercorp-Monarto-Apple-Processing-Plant.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Rivercorp Monarto Apple Processing Facility</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Elders-Strathalbyn.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Elders Strathalbyn</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Commercial", "", "inherit", "closed", "closed", "", "175-revision-v1", "", "", "2018-06-10 10:30:12", "2018-06-10 10:30:12", "", "175", "https://beyondink.alluredigitalmarketing.com.au/175-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("501", "1", "2018-06-10 10:11:51", "2018-06-10 10:11:51", "", "Battunga Residence", "", "inherit", "open", "closed", "", "battunga-residence-2", "", "", "2018-06-10 10:11:51", "2018-06-10 10:11:51", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Battunga-Residence.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("502", "1", "2018-06-10 10:13:21", "2018-06-10 10:13:21", "", "Echunga Residence", "", "inherit", "open", "closed", "", "echunga-residence-2", "", "", "2018-06-10 10:13:21", "2018-06-10 10:13:21", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Echunga-Residence.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("503", "1", "2018-06-10 10:14:30", "2018-06-10 10:14:30", "", "Jupiter Creek Residence", "", "inherit", "open", "closed", "", "jupiter-creek-residence-2", "", "", "2018-06-10 10:14:30", "2018-06-10 10:14:30", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Jupiter-Creek-Residence.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("499", "1", "2018-06-10 10:10:21", "2018-06-10 10:10:21", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/North-East-Corner-Dulux-Gunmetal-Kinetic.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Commercial Projects</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_3605-800x600.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Lane Winery</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Barker-Plaza-Entrance-800x534.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Barker Plaza Shopping Centre</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-2-1.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Haus Cafe+Bar+Kitchen</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/img_26711.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Haus Studio Apartments</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/K1-2.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">K1 Winery</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/55708_165645590125507_7049646_o.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Manna Motel of Hahndorf</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/img_2879.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Inavogue Showroom</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Pulteney-Plaza-800x600.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Pulteney Plaza Apartments</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/img_3053.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Rivercorp Monarto Apple Processing Facility</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/imported-08-02-2015-1087.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Elders Strathalbyn</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Commercial", "", "inherit", "closed", "closed", "", "175-revision-v1", "", "", "2018-06-10 10:10:21", "2018-06-10 10:10:21", "", "175", "https://beyondink.alluredigitalmarketing.com.au/175-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("520", "1", "2018-06-10 10:32:28", "2018-06-10 10:32:28", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#9dd00f\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"27px|0px|11px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Crafers Residence</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\" prev_background_color=\"#9dd00f\" next_background_color=\"#000000\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235,250,246\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\" prev_background_color=\"#000000\"][et_pb_fullwidth_image _builder_version=\"3.0.106\" /][/et_pb_section]", "Barker Plaza Shopping Centre", "", "inherit", "closed", "closed", "", "519-revision-v1", "", "", "2018-06-10 10:32:28", "2018-06-10 10:32:28", "", "519", "https://beyondink.alluredigitalmarketing.com.au/519-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("509", "1", "2018-06-10 10:17:03", "2018-06-10 10:17:03", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Exterior-3-of-6-800x535.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Residential Projects</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row _builder_version=\"3.0.106\" custom_padding=\"50px|0px|27px|0px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Bell-Crt-4-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/adelaide-hills-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Adelaide Hills Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/aldgate-renovation/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Aldgate Renovation</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Battunga-Residence.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/battunga-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Battunga Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6211-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/bridgewater-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Bridgewater Residence</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/6.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/bridgewater-rammed-earth-renovation/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Bridgewater Rammed Earth Renovation</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/The-Latch-Atkinson-Rd-Crafers-West-5-800x532.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/crafers-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Crafers Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Echunga-Residence.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/echunga-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Echunga Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Jupiter-Creek-Residence.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/jupiter-creek-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Jupiter Creek Residence</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence-6.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/kensington-gardens/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Kensington Gardens Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/IMG_0623-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/littlehampton-renovation-additions/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Littlehampton Renovation and Additions</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/14-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/totness-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Totness Residence</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Residential", "", "inherit", "closed", "closed", "", "152-revision-v1", "", "", "2018-06-10 10:17:03", "2018-06-10 10:17:03", "", "152", "https://beyondink.alluredigitalmarketing.com.au/152-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("527", "1", "2018-06-10 10:35:37", "2018-06-10 10:35:37", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/North-East-Corner-Dulux-Gunmetal-Kinetic.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Commercial Projects</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"50px|0px|27px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Lane-Winery.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Lane Winery</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Barker-Plaza-Entrance-800x534.jpg\" _builder_version=\"3.0.106\" url=\"https://beyondink.alluredigitalmarketing.com.au/barker-plaza/\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Barker Plaza Shopping Centre</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Hahndorf.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Haus Cafe+Bar+Kitchen</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Studio-Apartments.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Haus Studio Apartments</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/K1-Winery.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">K1 Winery</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/55708_165645590125507_7049646_o.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Manna Motel of Hahndorf</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Inavogue-Showroom.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Inavogue Showroom</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Pulteney-Plaza-Apartments.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Pulteney Plaza Apartments</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Rivercorp-Monarto-Apple-Processing-Plant.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Rivercorp Monarto Apple Processing Facility</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Elders-Strathalbyn.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Elders Strathalbyn</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Commercial", "", "inherit", "closed", "closed", "", "175-revision-v1", "", "", "2018-06-10 10:35:37", "2018-06-10 10:35:37", "", "175", "https://beyondink.alluredigitalmarketing.com.au/175-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("526", "1", "2018-06-10 10:35:05", "2018-06-10 10:35:05", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Barker Plaza Shopping Centre</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"522,523,524,525\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Barker Plaza Shopping Centre", "", "inherit", "closed", "closed", "", "519-revision-v1", "", "", "2018-06-10 10:35:05", "2018-06-10 10:35:05", "", "519", "https://beyondink.alluredigitalmarketing.com.au/519-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("522", "1", "2018-06-10 10:34:23", "2018-06-10 10:34:23", "", "Barker Plaza Shopping Centre", "", "inherit", "open", "closed", "", "aldi-800x534", "", "", "2018-06-10 10:34:35", "2018-06-10 10:34:35", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/ALDI-800x534.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("523", "1", "2018-06-10 10:34:26", "2018-06-10 10:34:26", "", "Barker Plaza Shopping Centre", "", "inherit", "open", "closed", "", "barker-plaza-entrance-800x534-2", "", "", "2018-06-10 10:34:44", "2018-06-10 10:34:44", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Barker-Plaza-Entrance-800x534.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("524", "1", "2018-06-10 10:34:29", "2018-06-10 10:34:29", "", "Barker Plaza Shopping Centre", "", "inherit", "open", "closed", "", "barker-plaza-mall-aldi-800x534", "", "", "2018-06-10 10:34:41", "2018-06-10 10:34:41", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Barker-Plaza-Mall-ALDI-800x534.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("525", "1", "2018-06-10 10:34:33", "2018-06-10 10:34:33", "", "Barker Plaza Shopping Centre", "", "inherit", "open", "closed", "", "barker-plaza-mall-800x534", "", "", "2018-06-10 10:34:38", "2018-06-10 10:34:38", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Barker-Plaza-Mall-800x534.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("752", "1", "2018-06-11 00:58:07", "2018-06-11 00:58:07", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\" template_type=\"section\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Barker Plaza Shopping Centre</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Plain Page Header", "", "publish", "closed", "closed", "", "plain-page-header", "", "", "2018-06-11 00:58:07", "2018-06-11 00:58:07", "", "0", "https://beyondink.alluredigitalmarketing.com.au/et_pb_layout/plain-page-header/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("533", "1", "2018-06-10 10:39:39", "2018-06-10 10:39:39", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#9dd00f\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"27px|0px|11px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Crafers Residence</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\" prev_background_color=\"#9dd00f\" next_background_color=\"#000000\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235,250,246\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\" prev_background_color=\"#000000\"][et_pb_fullwidth_image _builder_version=\"3.0.106\" /][/et_pb_section]", "Elders Strathalbyn", "", "inherit", "closed", "closed", "", "530-revision-v1", "", "", "2018-06-10 10:39:39", "2018-06-10 10:39:39", "", "530", "https://beyondink.alluredigitalmarketing.com.au/530-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("537", "1", "2018-06-10 10:43:47", "2018-06-10 10:43:47", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#9dd00f\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"27px|0px|11px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\n\n</p><h1>Elders Strathalbyn</h1><p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\" prev_background_color=\"#9dd00f\" next_background_color=\"#000000\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"532\" gallery_orderby=\"rand\" posts_number=\"1\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\" prev_background_color=\"#000000\"][et_pb_fullwidth_image _builder_version=\"3.0.106\" /][/et_pb_section]", "Elders Strathalbyn", "", "inherit", "closed", "closed", "", "530-autosave-v1", "", "", "2018-06-10 10:43:47", "2018-06-10 10:43:47", "", "530", "https://beyondink.alluredigitalmarketing.com.au/530-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("535", "1", "2018-06-10 10:40:41", "2018-06-10 10:40:41", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Elders Strathalbyn</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235,250,246,532,525\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,,,\" posts_number=\"1\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Elders Strathalbyn", "", "inherit", "closed", "closed", "", "530-revision-v1", "", "", "2018-06-10 10:40:41", "2018-06-10 10:40:41", "", "530", "https://beyondink.alluredigitalmarketing.com.au/530-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("530", "1", "2018-06-10 10:39:39", "2018-06-10 10:39:39", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Elders Strathalbyn</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"532\" gallery_orderby=\"rand\" posts_number=\"1\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Elders Strathalbyn", "", "publish", "closed", "closed", "", "elders-strathalbyn", "", "", "2018-06-10 10:41:20", "2018-06-10 10:41:20", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=530", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("536", "1", "2018-06-10 10:41:08", "2018-06-10 10:41:08", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Elders Strathalbyn</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"532\" gallery_orderby=\"rand\" posts_number=\"1\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Elders Strathalbyn", "", "inherit", "closed", "closed", "", "530-revision-v1", "", "", "2018-06-10 10:41:08", "2018-06-10 10:41:08", "", "530", "https://beyondink.alluredigitalmarketing.com.au/530-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("538", "1", "2018-06-10 10:42:15", "2018-06-10 10:42:15", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/North-East-Corner-Dulux-Gunmetal-Kinetic.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Commercial Projects</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"50px|0px|27px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Lane-Winery.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Lane Winery</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Barker-Plaza-Entrance-800x534.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/barker-plaza/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Barker Plaza Shopping Centre</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Hahndorf.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Haus Cafe+Bar+Kitchen</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Studio-Apartments.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Haus Studio Apartments</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/K1-Winery.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">K1 Winery</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/55708_165645590125507_7049646_o.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Manna Motel of Hahndorf</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Inavogue-Showroom.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Inavogue Showroom</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Pulteney-Plaza-Apartments.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Pulteney Plaza Apartments</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Rivercorp-Monarto-Apple-Processing-Plant.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Rivercorp Monarto Apple Processing Facility</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Elders-Strathalbyn-2.jpg\" _builder_version=\"3.0.106\" url=\"https://beyondink.alluredigitalmarketing.com.au/elders-strathalbyn/\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Elders Strathalbyn</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Commercial", "", "inherit", "closed", "closed", "", "175-revision-v1", "", "", "2018-06-10 10:42:15", "2018-06-10 10:42:15", "", "175", "https://beyondink.alluredigitalmarketing.com.au/175-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("661", "1", "2018-06-10 12:43:07", "2018-06-10 12:43:07", " ", "", "", "publish", "closed", "closed", "", "661", "", "", "2018-07-30 02:30:40", "2018-07-30 02:30:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?p=661", "7", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("662", "1", "2018-06-10 12:43:07", "2018-06-10 12:43:07", " ", "", "", "publish", "closed", "closed", "", "662", "", "", "2018-07-30 02:30:40", "2018-07-30 02:30:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?p=662", "9", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("663", "1", "2018-06-10 12:43:07", "2018-06-10 12:43:07", " ", "", "", "publish", "closed", "closed", "", "663", "", "", "2018-07-30 02:30:40", "2018-07-30 02:30:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?p=663", "8", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("664", "1", "2018-06-10 12:43:07", "2018-06-10 12:43:07", " ", "", "", "publish", "closed", "closed", "", "664", "", "", "2018-07-30 02:30:40", "2018-07-30 02:30:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?p=664", "10", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("666", "1", "2018-06-10 12:43:07", "2018-06-10 12:43:07", " ", "", "", "publish", "closed", "closed", "", "666", "", "", "2018-07-30 02:30:40", "2018-07-30 02:30:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?p=666", "6", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("669", "1", "2018-06-10 12:43:07", "2018-06-10 12:43:07", " ", "", "", "publish", "closed", "closed", "", "669", "", "", "2018-07-30 02:30:40", "2018-07-30 02:30:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?p=669", "5", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("670", "1", "2018-06-10 12:43:07", "2018-06-10 12:43:07", "", "Mount Barker Residence", "", "publish", "closed", "closed", "", "670", "", "", "2018-07-30 02:30:40", "2018-07-30 02:30:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?p=670", "24", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("671", "1", "2018-06-10 12:43:07", "2018-06-10 12:43:07", " ", "", "", "publish", "closed", "closed", "", "671", "", "", "2018-07-30 02:30:40", "2018-07-30 02:30:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?p=671", "14", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("1047", "1", "2018-07-18 10:54:03", "2018-07-18 10:54:03", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>123 Greenhill Road</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|21px|0px\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f3f3f3\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>Now a commercial office building, originally 123 Greenhill Road (in Adelaide) was the Adelaide Steamship building - and later, Rural Press.</p>\n<p>In its redesign, we retained the existing building behind the façade and provided an economical visual solution to overcome the challenges the building presented.</p>\n<p>The interior of the building was gutted to provide for a more contemporary office layout, and the new frontage of the building now allows for a virtually unbroken view across the South parklands.</p>\n<p><strong>Our involvement: Design, Town Planning</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"32px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"990,989,988,1004\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "123 Greenhill Road", "", "inherit", "closed", "closed", "", "985-revision-v1", "", "", "2018-07-18 10:54:03", "2018-07-18 10:54:03", "", "985", "https://beyondink.alluredigitalmarketing.com.au/985-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("673", "1", "2018-06-10 12:43:07", "2018-06-10 12:43:07", " ", "", "", "publish", "closed", "closed", "", "673", "", "", "2018-07-30 02:30:40", "2018-07-30 02:30:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?p=673", "15", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("674", "1", "2018-06-10 12:43:07", "2018-06-10 12:43:07", " ", "", "", "publish", "closed", "closed", "", "674", "", "", "2018-07-30 02:30:40", "2018-07-30 02:30:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?p=674", "16", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("675", "1", "2018-06-10 12:43:07", "2018-06-10 12:43:07", " ", "", "", "publish", "closed", "closed", "", "675", "", "", "2018-07-30 02:30:40", "2018-07-30 02:30:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?p=675", "18", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("676", "1", "2018-06-10 12:43:08", "2018-06-10 12:43:08", " ", "", "", "publish", "closed", "closed", "", "676", "", "", "2018-07-30 02:30:40", "2018-07-30 02:30:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?p=676", "19", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("677", "1", "2018-06-10 12:43:08", "2018-06-10 12:43:08", " ", "", "", "publish", "closed", "closed", "", "677", "", "", "2018-07-30 02:30:40", "2018-07-30 02:30:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?p=677", "21", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("678", "1", "2018-06-10 12:43:08", "2018-06-10 12:43:08", " ", "", "", "publish", "closed", "closed", "", "678", "", "", "2018-07-30 02:30:40", "2018-07-30 02:30:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?p=678", "22", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("679", "1", "2018-06-10 12:43:08", "2018-06-10 12:43:08", " ", "", "", "publish", "closed", "closed", "", "679", "", "", "2018-07-30 02:30:40", "2018-07-30 02:30:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?p=679", "23", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("707", "1", "2018-06-10 13:02:22", "2018-06-10 13:02:22", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>The Hahndorf Academy</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"683,684,685,686,688,689,691,693\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "The Hahndorf Academy", "", "publish", "closed", "closed", "", "hahndorf-academy", "", "", "2018-06-10 13:05:05", "2018-06-10 13:05:05", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=707", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("698", "1", "2018-06-10 12:57:11", "2018-06-10 12:57:11", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Skilly Hills Function Centre &amp; Renovation Project</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"701,702,703,704\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Skilly Hills Function Centre & Renovation Project", "", "publish", "closed", "closed", "", "skilly-hills-function-centre-restoration-project", "", "", "2018-06-10 12:59:52", "2018-06-10 12:59:52", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=698", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("682", "1", "2018-06-10 12:47:07", "2018-06-10 12:47:07", "", "IMG_0182 (800x533)", "", "inherit", "open", "closed", "", "img_0182-800x533", "", "", "2018-06-10 12:47:07", "2018-06-10 12:47:07", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0182-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("540", "1", "2018-06-10 10:45:43", "2018-06-10 10:45:43", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Inavogue Showroom</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"541\" gallery_orderby=\"rand\" posts_number=\"1\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Inavogue Showroom", "", "publish", "closed", "closed", "", "inavogue-showroom", "", "", "2018-06-10 10:47:16", "2018-06-10 10:47:16", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=540", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("545", "1", "2018-06-10 10:47:16", "2018-06-10 10:47:16", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Inavogue Showroom</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"541\" gallery_orderby=\"rand\" posts_number=\"1\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Inavogue Showroom", "", "inherit", "closed", "closed", "", "540-revision-v1", "", "", "2018-06-10 10:47:16", "2018-06-10 10:47:16", "", "540", "https://beyondink.alluredigitalmarketing.com.au/540-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("542", "1", "2018-06-10 10:45:43", "2018-06-10 10:45:43", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#9dd00f\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"27px|0px|11px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Crafers Residence</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\" prev_background_color=\"#9dd00f\" next_background_color=\"#000000\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235,250,246\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\" prev_background_color=\"#000000\"][et_pb_fullwidth_image _builder_version=\"3.0.106\" /][/et_pb_section]", "Inavogue Showroom", "", "inherit", "closed", "closed", "", "540-revision-v1", "", "", "2018-06-10 10:45:43", "2018-06-10 10:45:43", "", "540", "https://beyondink.alluredigitalmarketing.com.au/540-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("547", "1", "2018-06-10 10:47:52", "2018-06-10 10:47:52", "<p>[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]</p><h1>Inavogue Showroom</h1><p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"541\" gallery_orderby=\"rand\" posts_number=\"1\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]</p>", "Inavogue Showroom", "", "inherit", "closed", "closed", "", "540-autosave-v1", "", "", "2018-06-10 10:47:52", "2018-06-10 10:47:52", "", "540", "https://beyondink.alluredigitalmarketing.com.au/540-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("544", "1", "2018-06-10 10:46:46", "2018-06-10 10:46:46", "", "Inavogue Showroom", "", "inherit", "open", "closed", "", "inavogue-showroom-2-2", "", "", "2018-06-10 11:56:27", "2018-06-10 11:56:27", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Inavogue-Showroom-2-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("548", "1", "2018-06-10 10:47:59", "2018-06-10 10:47:59", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/North-East-Corner-Dulux-Gunmetal-Kinetic.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Commercial Projects</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"50px|0px|27px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Lane-Winery.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Lane Winery</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Barker-Plaza-Entrance-800x534.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/barker-plaza/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Barker Plaza Shopping Centre</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Hahndorf.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Haus Cafe+Bar+Kitchen</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Studio-Apartments.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Haus Studio Apartments</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/K1-Winery.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">K1 Winery</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/55708_165645590125507_7049646_o.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Manna Motel of Hahndorf</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Inavogue-Showroom.jpg\" _builder_version=\"3.0.106\" url=\"https://beyondink.alluredigitalmarketing.com.au/inavogue-showroom/\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Inavogue Showroom</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Pulteney-Plaza-Apartments.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Pulteney Plaza Apartments</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Rivercorp-Monarto-Apple-Processing-Plant.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Rivercorp Monarto Apple Processing Facility</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Elders-Strathalbyn-2.jpg\" _builder_version=\"3.0.106\" url=\"https://beyondink.alluredigitalmarketing.com.au/elders-strathalbyn/\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Elders Strathalbyn</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Commercial", "", "inherit", "closed", "closed", "", "175-revision-v1", "", "", "2018-06-10 10:47:59", "2018-06-10 10:47:59", "", "175", "https://beyondink.alluredigitalmarketing.com.au/175-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("550", "1", "2018-06-10 10:49:54", "2018-06-10 10:49:54", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>K1 Winery</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|24px|0px\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>We designed the K1 Winery and cellar door for Geoff Hardy and his family.</p>\n<p>It incorporates a large function area, administration spaces, and other facilities associated with the K1 Wine brand.</p>\n<p><strong>Our Involvement: Design, Town Planning</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"554,1007\" gallery_orderby=\"rand\" gallery_captions=\",\" posts_number=\"2\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" module_class=\"centerGallery \"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "K1 Winery", "", "publish", "closed", "closed", "", "k1-winery", "", "", "2018-07-24 12:25:07", "2018-07-24 12:25:07", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=550", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("562", "1", "2018-06-10 10:58:44", "2018-06-10 10:58:44", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>K1 Winery</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"554\" gallery_orderby=\"rand\" posts_number=\"1\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "K1 Winery", "", "inherit", "closed", "closed", "", "550-revision-v1", "", "", "2018-06-10 10:58:44", "2018-06-10 10:58:44", "", "550", "https://beyondink.alluredigitalmarketing.com.au/550-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("552", "1", "2018-06-10 10:49:54", "2018-06-10 10:49:54", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#9dd00f\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"27px|0px|11px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Crafers Residence</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\" prev_background_color=\"#9dd00f\" next_background_color=\"#000000\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235,250,246\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\" prev_background_color=\"#000000\"][et_pb_fullwidth_image _builder_version=\"3.0.106\" /][/et_pb_section]", "K1 Winery", "", "inherit", "closed", "closed", "", "550-revision-v1", "", "", "2018-06-10 10:49:54", "2018-06-10 10:49:54", "", "550", "https://beyondink.alluredigitalmarketing.com.au/550-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("559", "1", "2018-06-10 10:57:52", "2018-06-10 10:57:52", "", "K1 Winery 3", "", "inherit", "open", "closed", "", "k1-winery-3-2", "", "", "2018-06-10 10:57:52", "2018-06-10 10:57:52", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/K1-Winery-3-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1012", "1", "2018-07-18 10:17:30", "2018-07-18 10:17:30", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>The Lane Vineyard</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row background_color=\"#f1f1f1\" _builder_version=\"3.0.106\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>We\'ve been involved with the beautiful Lane Winery since the beginning.</p>\n<p>We designed it initially and have been involved in a number of improvements/additions that have been made since then.</p>\n<p>The Lane Vineyard site includes the winery, cellar door and restaurant. The Lane host a lot of events and functions, and are an incredibly popular wedding location.</p>\n<p><strong>Our involvement: Design, Town Planning, Project Management, Cost Control</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"2px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"585,587,588,590,591,592,595,593\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "The Lane Vineyard", "", "inherit", "closed", "closed", "", "580-revision-v1", "", "", "2018-07-18 10:17:30", "2018-07-18 10:17:30", "", "580", "https://beyondink.alluredigitalmarketing.com.au/580-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("555", "1", "2018-06-10 10:55:11", "2018-06-10 10:55:11", "", "K1 Winery", "", "inherit", "open", "closed", "", "k1-winery-3", "", "", "2018-06-10 10:56:49", "2018-06-10 10:56:49", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/K1-Winery-3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("554", "1", "2018-06-10 10:53:33", "2018-06-10 10:53:33", "", "K1 Winery", "", "inherit", "open", "closed", "", "k1-winery-2-2", "", "", "2018-06-10 10:53:37", "2018-06-10 10:53:37", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/K1-Winery-2-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("556", "1", "2018-06-10 10:55:52", "2018-06-10 10:55:52", "", "K1 Winery", "", "inherit", "open", "closed", "", "k1-winery-4", "", "", "2018-06-10 10:56:51", "2018-06-10 10:56:51", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/K1-Winery-4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("557", "1", "2018-06-10 10:56:42", "2018-06-10 10:56:42", "", "K1 Winery", "", "inherit", "open", "closed", "", "k1-winery-5", "", "", "2018-06-10 10:56:54", "2018-06-10 10:56:54", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/K1-Winery-5.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("558", "1", "2018-06-10 10:57:27", "2018-06-10 10:57:27", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>K1 Winery</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"554,555,556,557\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "K1 Winery", "", "inherit", "closed", "closed", "", "550-revision-v1", "", "", "2018-06-10 10:57:27", "2018-06-10 10:57:27", "", "550", "https://beyondink.alluredigitalmarketing.com.au/550-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1007", "1", "2018-07-18 10:09:40", "2018-07-18 10:09:40", "", "K1 Winery", "", "inherit", "open", "closed", "", "1-2", "", "", "2018-07-18 10:09:58", "2018-07-18 10:09:58", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("561", "1", "2018-06-10 10:58:06", "2018-06-10 10:58:06", "", "K1 Winery 4", "", "inherit", "open", "closed", "", "k1-winery-4-2", "", "", "2018-06-10 10:58:06", "2018-06-10 10:58:06", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/K1-Winery-4-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("565", "1", "2018-06-10 10:59:28", "2018-06-10 10:59:28", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/North-East-Corner-Dulux-Gunmetal-Kinetic.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Commercial Projects</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"50px|0px|27px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Lane-Winery.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Lane Winery</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Barker-Plaza-Entrance-800x534.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/barker-plaza/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Barker Plaza Shopping Centre</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Hahndorf.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Haus Cafe+Bar+Kitchen</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Studio-Apartments.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Haus Studio Apartments</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/K1-Winery.jpg\" _builder_version=\"3.0.106\" url=\"https://beyondink.alluredigitalmarketing.com.au/k1-winery/\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">K1 Winery</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/55708_165645590125507_7049646_o.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Manna Motel of Hahndorf</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Inavogue-Showroom.jpg\" _builder_version=\"3.0.106\" url=\"https://beyondink.alluredigitalmarketing.com.au/inavogue-showroom/\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Inavogue Showroom</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Pulteney-Plaza-Apartments.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Pulteney Plaza Apartments</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Rivercorp-Monarto-Apple-Processing-Plant.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Rivercorp Monarto Apple Processing Facility</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Elders-Strathalbyn-2.jpg\" _builder_version=\"3.0.106\" url=\"https://beyondink.alluredigitalmarketing.com.au/elders-strathalbyn/\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Elders Strathalbyn</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Commercial", "", "inherit", "closed", "closed", "", "175-revision-v1", "", "", "2018-06-10 10:59:28", "2018-06-10 10:59:28", "", "175", "https://beyondink.alluredigitalmarketing.com.au/175-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("567", "1", "2018-06-10 11:02:27", "2018-06-10 11:02:27", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Pulteney Plaza Apartments</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"568,571\" gallery_orderby=\"rand\" gallery_captions=\",\" posts_number=\"2\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Pulteney Plaza Apartments", "", "publish", "closed", "closed", "", "pulteney-plaza-adelaide", "", "", "2018-06-10 11:05:01", "2018-06-10 11:05:01", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=567", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("569", "1", "2018-06-10 11:02:27", "2018-06-10 11:02:27", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#9dd00f\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"27px|0px|11px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Crafers Residence</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\" prev_background_color=\"#9dd00f\" next_background_color=\"#000000\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235,250,246\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\" prev_background_color=\"#000000\"][et_pb_fullwidth_image _builder_version=\"3.0.106\" /][/et_pb_section]", "Pulteney Plaza Apartments", "", "inherit", "closed", "closed", "", "567-revision-v1", "", "", "2018-06-10 11:02:27", "2018-06-10 11:02:27", "", "567", "https://beyondink.alluredigitalmarketing.com.au/567-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("573", "1", "2018-06-10 11:05:19", "2018-06-10 11:05:19", "<p>[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]</p><h1>Pulteney Plaza Apartments</h1><p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"568,571\" gallery_orderby=\"rand\" gallery_captions=\",\" posts_number=\"2\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]</p>", "Pulteney Plaza Apartments", "", "inherit", "closed", "closed", "", "567-autosave-v1", "", "", "2018-06-10 11:05:19", "2018-06-10 11:05:19", "", "567", "https://beyondink.alluredigitalmarketing.com.au/567-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("572", "1", "2018-06-10 11:05:01", "2018-06-10 11:05:01", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Pulteney Plaza Apartments</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"568,571\" gallery_orderby=\"rand\" gallery_captions=\",\" posts_number=\"2\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Pulteney Plaza Apartments", "", "inherit", "closed", "closed", "", "567-revision-v1", "", "", "2018-06-10 11:05:01", "2018-06-10 11:05:01", "", "567", "https://beyondink.alluredigitalmarketing.com.au/567-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("571", "1", "2018-06-10 11:03:57", "2018-06-10 11:03:57", "", "Pulteney Plaza Apartments 3", "", "inherit", "open", "closed", "", "pulteney-plaza-apartments-3", "", "", "2018-06-10 11:03:57", "2018-06-10 11:03:57", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Pulteney-Plaza-Apartments-3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("574", "1", "2018-06-10 11:05:27", "2018-06-10 11:05:27", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/North-East-Corner-Dulux-Gunmetal-Kinetic.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Commercial Projects</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"50px|0px|27px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Lane-Winery.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Lane Winery</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Barker-Plaza-Entrance-800x534.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/barker-plaza/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Barker Plaza Shopping Centre</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Hahndorf.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Haus Cafe+Bar+Kitchen</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Studio-Apartments.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Haus Studio Apartments</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/K1-Winery.jpg\" _builder_version=\"3.0.106\" url=\"https://beyondink.alluredigitalmarketing.com.au/k1-winery/\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">K1 Winery</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/55708_165645590125507_7049646_o.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Manna Motel of Hahndorf</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Inavogue-Showroom.jpg\" _builder_version=\"3.0.106\" url=\"https://beyondink.alluredigitalmarketing.com.au/inavogue-showroom/\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Inavogue Showroom</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Pulteney-Plaza-Apartments.jpg\" _builder_version=\"3.0.106\" url=\"https://beyondink.alluredigitalmarketing.com.au/pulteney-plaza-adelaide/\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Pulteney Plaza Apartments</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Rivercorp-Monarto-Apple-Processing-Plant.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Rivercorp Monarto Apple Processing Facility</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Elders-Strathalbyn-2.jpg\" _builder_version=\"3.0.106\" url=\"https://beyondink.alluredigitalmarketing.com.au/elders-strathalbyn/\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Elders Strathalbyn</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Commercial", "", "inherit", "closed", "closed", "", "175-revision-v1", "", "", "2018-06-10 11:05:27", "2018-06-10 11:05:27", "", "175", "https://beyondink.alluredigitalmarketing.com.au/175-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("600", "1", "2018-06-10 12:10:01", "2018-06-10 12:10:01", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>The Haus Hahndorf</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading &amp; Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n\r\nThe Haus Restaurant, on the main street of Hahndorf, is owned and operated by the Duffield family. We\'ve had the pleasure of working with the Duffield\'s on various projects over the past 25 years - including various hospitality and accommodation venues; and now the refurbishment of those same venues.\r\n\r\n<strong>Our Involvement: Project Management, Cost Control, Town Planning</strong>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading &amp; Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n\r\nThe Haus hosts a lot of conferences and functions, as well as provides catering off-site. And they\'ve <span style=\"font-size: 18px;\">just been awarded Venue Caterer of the Year at the 2018 Savour Australia Restaurant and Catering Awards.</span>\r\n\r\nHint: when you visit the restaurant make sure you check out the murals which have been stencilled on the walls - they tell a story of the history of Hahndorf. They show the ships arriving, residents tending to crops, a <a href=\"../the-manna-motel-of-hahndorf/\">pear tree</a>, and more.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "The Haus Hahndorf", "", "publish", "closed", "closed", "", "the-haus-cafebarkitchen", "", "", "2018-07-24 12:31:54", "2018-07-24 12:31:54", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=600", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("576", "1", "2018-06-10 12:25:22", "2018-06-10 12:25:22", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Rivercorp Monarto Apple Processing Facility</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#F1F1F1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>This project was constructed to be the largest apple processing facility in the Southern hemisphere - located in Monarto, South Australia.</p>\n<p><strong>Our Involvement: Design, Project Management, Cost Control, Town Planning</strong></p>\n<p>Builder: <a href=\"http://www.palumbo.com.au/about/\" target=\"_blank\" rel=\"noopener noreferrer\">Palumbo</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"631,632,633,634,635,636,637\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Rivercorp Monarto Apple Processing Facility", "", "publish", "closed", "closed", "", "rivercorp-monarto-apple-processing-facility", "", "", "2018-07-24 12:25:52", "2018-07-24 12:25:52", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=576", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("578", "1", "2018-06-10 11:57:07", "2018-06-10 11:57:07", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/North-East-Corner-Dulux-Gunmetal-Kinetic.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Commercial Projects</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"50px|0px|27px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Lane-Winery.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Lane Winery</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Barker-Plaza-Entrance-800x534.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/barker-plaza/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Barker Plaza Shopping Centre</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Hahndorf.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Haus Cafe+Bar+Kitchen</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Studio-Apartments.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Haus Studio Apartments</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/K1-Winery-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/k1-winery/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">K1 Winery</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/55708_165645590125507_7049646_o.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Manna Motel of Hahndorf</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Inavogue-Showroom-2-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/inavogue-showroom/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Inavogue Showroom</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Pulteney-Plaza-Apartments-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/pulteney-plaza-adelaide/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Pulteney Plaza Apartments</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Rivercorp-Monarto-Apple-Processing-Plant.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Rivercorp Monarto Apple Processing Facility</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Elders-Strathalbyn-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/elders-strathalbyn/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Elders Strathalbyn</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Commercial", "", "inherit", "closed", "closed", "", "175-revision-v1", "", "", "2018-06-10 11:57:07", "2018-06-10 11:57:07", "", "175", "https://beyondink.alluredigitalmarketing.com.au/175-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("580", "1", "2018-06-10 12:00:19", "2018-06-10 12:00:19", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>The Lane Vineyard</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>We\'ve been involved with the beautiful <a href=\"https://www.thelane.com.au/\" target=\"_blank\" rel=\"noopener noreferrer\">Lane Vineyard</a> since the beginning - having designed it initially; and then since, we\'ve been involved in a number of improvements/additions that\'ve been made.</p>\n<p><strong>Our Involvement: Design, Town Planning, Project Management, Cost Control</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"2px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"585,587,588,590,591,592,595,593\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The Lane Vineyard site includes the winery, cellar door and restaurant.</p>\n<p>The Lane hosts many prominent events and functions, and is a highly desired and popular wedding venue.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "The Lane Vineyard", "", "publish", "closed", "closed", "", "the-lane-vineyard", "", "", "2018-07-24 12:30:46", "2018-07-24 12:30:46", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=580", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("581", "1", "2018-06-10 12:00:19", "2018-06-10 12:00:19", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#9dd00f\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"27px|0px|11px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Crafers Residence</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\" prev_background_color=\"#9dd00f\" next_background_color=\"#000000\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235,250,246\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\" prev_background_color=\"#000000\"][et_pb_fullwidth_image _builder_version=\"3.0.106\" /][/et_pb_section]", "The Lane Vineyard", "", "inherit", "closed", "closed", "", "580-revision-v1", "", "", "2018-06-10 12:00:19", "2018-06-10 12:00:19", "", "580", "https://beyondink.alluredigitalmarketing.com.au/580-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("595", "1", "2018-06-10 12:06:02", "2018-06-10 12:06:02", "", "the-lane-vineyard-restaurants-hahndorf-3", "", "inherit", "open", "closed", "", "the-lane-vineyard-restaurants-hahndorf-3-2", "", "", "2018-06-10 12:06:02", "2018-06-10 12:06:02", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/the-lane-vineyard-restaurants-hahndorf-3-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1059", "1", "2018-07-18 10:58:55", "2018-07-18 10:58:55", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>The Haus Studio Apartments</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The Haus Studio Apartments are a part of the Hahndorf Accommodation Group, owned by the Duffield family, whom we\'ve worked closely with over the past 25 years.</p>\n<p>Interesting fact: there is a historic pear tree on the grounds (one of the village\'s original trees). The early settlers of Hahndorf would plant a pear tree near their wells, as they believed it would make the water sweeter. This story forms part of the mural on the internal walls of the <a href=\"../the-haus-cafebarkitchen/\">Haus Restaurant</a>.</p>\n<p><strong>Our involvement: Design, Project Management, Cost Control</strong></p>\n<p>Builder: Scholz Constructions</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"616,618,619,621\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "The Haus Studio Apartments", "", "inherit", "closed", "closed", "", "613-revision-v1", "", "", "2018-07-18 10:58:55", "2018-07-18 10:58:55", "", "613", "https://beyondink.alluredigitalmarketing.com.au/613-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1018", "1", "2018-07-18 10:28:09", "2018-07-18 10:28:09", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>The Haus Studio Apartments</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row background_color=\"#f1f1f1\" _builder_version=\"3.0.106\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The Haus Studio Apartments are a part of the Hahndorf Accommodation Group, owned by the Duffield family, whom we\'ve worked closely with over the past 25 years.</p>\n<p>We designed these self-contained studio apartments for the Duffield\'s.</p>\n<p>Interesting fact: there is a historic pear tree on the grounds (one of the village\'s original trees). The early settlers of Hahndorf would plant a pear tree near their wells, as they believed it would make the water sweeter. This story forms part of the mural on the internal walls of the <a href=\"../the-haus-cafebarkitchen/\">Haus Restaurant</a>.</p>\n<p><strong>Our involvement: Design, Project Management, Cost Control</strong></p>\n<p>Builder: Scholz Constructions</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"616,618,619,621\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "The Haus Studio Apartments", "", "inherit", "closed", "closed", "", "613-revision-v1", "", "", "2018-07-18 10:28:09", "2018-07-18 10:28:09", "", "613", "https://beyondink.alluredigitalmarketing.com.au/613-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("583", "1", "2018-06-10 12:01:35", "2018-06-10 12:01:35", "", "The Lane Vineyard", "", "inherit", "open", "closed", "", "4-240x160", "", "", "2018-06-10 12:02:35", "2018-06-10 12:02:35", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/4-240x160.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("584", "1", "2018-06-10 12:01:36", "2018-06-10 12:01:36", "", "The Lane Vineyard", "", "inherit", "open", "closed", "", "6-280x210", "", "", "2018-06-10 12:02:31", "2018-06-10 12:02:31", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/6-280x210.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("585", "1", "2018-06-10 12:01:37", "2018-06-10 12:01:37", "", "The Lane Vineyard", "", "inherit", "open", "closed", "", "9-400x300", "", "", "2018-06-10 12:02:28", "2018-06-10 12:02:28", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/9-400x300.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("586", "1", "2018-06-10 12:01:38", "2018-06-10 12:01:38", "", "The Lane Vineyard", "", "inherit", "open", "closed", "", "800-300x300", "", "", "2018-06-10 12:02:25", "2018-06-10 12:02:25", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/800-300x300.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("587", "1", "2018-06-10 12:01:42", "2018-06-10 12:01:42", "", "The Lane Vineyard", "", "inherit", "open", "closed", "", "img_3603-800x600", "", "", "2018-06-10 12:02:22", "2018-06-10 12:02:22", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_3603-800x600.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("588", "1", "2018-06-10 12:01:47", "2018-06-10 12:01:47", "", "The Lane Vineyard", "", "inherit", "open", "closed", "", "img_3605-800x600-3", "", "", "2018-06-10 12:02:05", "2018-06-10 12:02:05", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_3605-800x600-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("589", "1", "2018-06-10 12:01:54", "2018-06-10 12:01:54", "", "The Lane Vineyard", "", "inherit", "open", "closed", "", "photo-ext-800x598", "", "", "2018-06-10 12:02:21", "2018-06-10 12:02:21", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Photo-ext-800x598.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("590", "1", "2018-06-10 12:01:58", "2018-06-10 12:01:58", "", "The Lane Vineyard", "", "inherit", "open", "closed", "", "thelane_weddingevent", "", "", "2018-06-10 12:02:21", "2018-06-10 12:02:21", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/thelane_weddingevent.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("591", "1", "2018-06-10 12:02:00", "2018-06-10 12:02:00", "", "The Lane Vineyard", "", "inherit", "open", "closed", "", "the-lane-vineyard-wedding-photography-033-570x350", "", "", "2018-06-10 12:02:12", "2018-06-10 12:02:12", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/the-lane-vineyard-wedding-photography-033-570x350.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("592", "1", "2018-06-10 12:02:49", "2018-06-10 12:02:49", "", "The Lane Vineyard", "", "inherit", "open", "closed", "", "7-800x600-2", "", "", "2018-06-10 12:02:52", "2018-06-10 12:02:52", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/7-800x600.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("593", "1", "2018-06-10 12:04:13", "2018-06-10 12:04:13", "", "The Lane Vineyard", "", "inherit", "open", "closed", "", "the-lane-vineyard-restaurants-hahndorf-3", "", "", "2018-06-10 12:04:20", "2018-06-10 12:04:20", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/the-lane-vineyard-restaurants-hahndorf-3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("597", "1", "2018-06-10 12:07:43", "2018-06-10 12:07:43", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>The Lane Vineyard</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"585,587,588,590,591,592,595,593\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "The Lane Vineyard", "", "inherit", "closed", "closed", "", "580-revision-v1", "", "", "2018-06-10 12:07:43", "2018-06-10 12:07:43", "", "580", "https://beyondink.alluredigitalmarketing.com.au/580-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("594", "1", "2018-06-10 12:05:10", "2018-06-10 12:05:10", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>The Lane Vineyard</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"585,586,587,588,589,590,591,592,583\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "The Lane Vineyard", "", "inherit", "closed", "closed", "", "580-revision-v1", "", "", "2018-06-10 12:05:10", "2018-06-10 12:05:10", "", "580", "https://beyondink.alluredigitalmarketing.com.au/580-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("599", "1", "2018-06-10 12:08:03", "2018-06-10 12:08:03", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/North-East-Corner-Dulux-Gunmetal-Kinetic.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Commercial Projects</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"50px|0px|27px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Lane-Winery.jpg\" _builder_version=\"3.0.106\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-lane-vineyard/\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Lane Winery</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Barker-Plaza-Entrance-800x534.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/barker-plaza/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Barker Plaza Shopping Centre</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Hahndorf.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Haus Cafe+Bar+Kitchen</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Studio-Apartments.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Haus Studio Apartments</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/K1-Winery-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/k1-winery/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">K1 Winery</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/55708_165645590125507_7049646_o.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Manna Motel of Hahndorf</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Inavogue-Showroom-2-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/inavogue-showroom/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Inavogue Showroom</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Pulteney-Plaza-Apartments-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/pulteney-plaza-adelaide/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Pulteney Plaza Apartments</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Rivercorp-Monarto-Apple-Processing-Plant.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Rivercorp Monarto Apple Processing Facility</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Elders-Strathalbyn-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/elders-strathalbyn/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Elders Strathalbyn</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Commercial", "", "inherit", "closed", "closed", "", "175-revision-v1", "", "", "2018-06-10 12:08:03", "2018-06-10 12:08:03", "", "175", "https://beyondink.alluredigitalmarketing.com.au/175-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("683", "1", "2018-06-10 12:50:10", "2018-06-10 12:50:10", "", "The Hahndorf Academy", "", "inherit", "open", "closed", "", "016-hahndorf", "", "", "2018-06-10 12:51:52", "2018-06-10 12:51:52", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/016-hahndorf.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("602", "1", "2018-06-10 12:10:01", "2018-06-10 12:10:01", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#9dd00f\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"27px|0px|11px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Crafers Residence</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\" prev_background_color=\"#9dd00f\" next_background_color=\"#000000\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235,250,246\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\" prev_background_color=\"#000000\"][et_pb_fullwidth_image _builder_version=\"3.0.106\" /][/et_pb_section]", "The Haus Cafe+Bar+Kitchen", "", "inherit", "closed", "closed", "", "600-revision-v1", "", "", "2018-06-10 12:10:01", "2018-06-10 12:10:01", "", "600", "https://beyondink.alluredigitalmarketing.com.au/600-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1021", "1", "2018-07-18 10:32:02", "2018-07-18 10:32:02", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>The Manna Motel of Hahndorf</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row background_color=\"#f1f1f1\" _builder_version=\"3.0.106\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The Manna is part of the Hahndorf Accommodation Group, owned by the Duffield family.</p>\n<p>The site used to be \'The Marketplace in Hahndorf\' - not really a market, but more of a courtyard surrounded by shops. Now \'The Manna\' is a 4 start motel with 50 modern and stylish hotel rooms.</p>\n<p><strong>Our Involvement: Design, Project Management, Town Planning, Cost Control</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"646,647,648,649,650,651,652,653,654,655,656\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "The Manna Motel of Hahndorf", "", "inherit", "closed", "closed", "", "642-revision-v1", "", "", "2018-07-18 10:32:02", "2018-07-18 10:32:02", "", "642", "https://beyondink.alluredigitalmarketing.com.au/642-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("604", "1", "2018-06-10 12:11:59", "2018-06-10 12:11:59", "", "The Haus Cafe+Bar+Kitchen", "", "inherit", "open", "closed", "", "5-1", "", "", "2018-06-10 12:13:53", "2018-06-10 12:13:53", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/5-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("605", "1", "2018-06-10 12:12:05", "2018-06-10 12:12:05", "", "The Haus Cafe+Bar+Kitchen", "", "inherit", "open", "closed", "", "5-2-3", "", "", "2018-06-10 12:13:59", "2018-06-10 12:13:59", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/5-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("606", "1", "2018-06-10 12:12:09", "2018-06-10 12:12:09", "", "The Haus Cafe+Bar+Kitchen", "", "inherit", "open", "closed", "", "300", "", "", "2018-06-10 12:14:02", "2018-06-10 12:14:02", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/300.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("607", "1", "2018-06-10 12:13:42", "2018-06-10 12:13:42", "", "The Haus Cafe+Bar+Kitchen", "", "inherit", "open", "closed", "", "haus-2", "", "", "2018-06-10 12:14:06", "2018-06-10 12:14:06", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Haus-2.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("608", "1", "2018-06-10 12:13:53", "2018-06-10 12:13:53", "", "The Haus Cafe+Bar+Kitchen", "", "inherit", "open", "closed", "", "haus", "", "", "2018-06-10 12:14:09", "2018-06-10 12:14:09", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Haus.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("609", "1", "2018-06-10 12:14:44", "2018-06-10 12:14:44", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>The Haus Cafe+Bar+Kitchen</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"604,605,606,607,608\" gallery_orderby=\"rand\" gallery_captions=\",,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "The Haus Cafe+Bar+Kitchen", "", "inherit", "closed", "closed", "", "600-revision-v1", "", "", "2018-06-10 12:14:44", "2018-06-10 12:14:44", "", "600", "https://beyondink.alluredigitalmarketing.com.au/600-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("611", "1", "2018-06-10 12:15:34", "2018-06-10 12:15:34", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/North-East-Corner-Dulux-Gunmetal-Kinetic.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Commercial Projects</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"50px|0px|27px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Lane-Winery.jpg\" _builder_version=\"3.0.106\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-lane-vineyard/\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Lane Winery</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Barker-Plaza-Entrance-800x534.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/barker-plaza/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Barker Plaza Shopping Centre</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Hahndorf.jpg\" _builder_version=\"3.0.106\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-haus-cafebarkitchen/\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Haus Cafe+Bar+Kitchen</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Studio-Apartments.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Haus Studio Apartments</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/K1-Winery-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/k1-winery/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">K1 Winery</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/55708_165645590125507_7049646_o.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Manna Motel of Hahndorf</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Inavogue-Showroom-2-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/inavogue-showroom/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Inavogue Showroom</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Pulteney-Plaza-Apartments-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/pulteney-plaza-adelaide/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Pulteney Plaza Apartments</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Rivercorp-Monarto-Apple-Processing-Plant.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Rivercorp Monarto Apple Processing Facility</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Elders-Strathalbyn-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/elders-strathalbyn/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Elders Strathalbyn</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Commercial", "", "inherit", "closed", "closed", "", "175-revision-v1", "", "", "2018-06-10 12:15:34", "2018-06-10 12:15:34", "", "175", "https://beyondink.alluredigitalmarketing.com.au/175-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("613", "1", "2018-06-10 12:17:29", "2018-06-10 12:17:29", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>The Haus Studio Apartments</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The Haus Studio Apartments are a part of the <a href=\"http://www.hahndorfaccommodation.com.au/\" target=\"_blank\" rel=\"noopener noreferrer\">Hahndorf Accommodation Group</a> - owned by the Duffield family, whom we\'ve worked closely with over the past 25 years.</p>\n<p><strong>Our Involvement: Design, Project Management, Cost Control</strong></p>\n<p>Builder: Scholz Constructions</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1275,1276,1277,1280,1281,1282,1283,1284,1286,1279,1287,1278\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>Interesting fact: there is a historic pear tree on the grounds (one of the village\'s original trees). The early settlers of Hahndorf would plant a pear tree near their wells, as they believed it would make the water sweeter. This story forms part of the mural on the internal walls of the <a href=\"../the-haus-cafebarkitchen/\">Haus Restaurant</a>. </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "The Haus Studio Apartments", "", "publish", "closed", "closed", "", "the-manna-apartments-2", "", "", "2018-07-24 12:29:16", "2018-07-24 12:29:16", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=613", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("614", "1", "2018-06-10 12:17:29", "2018-06-10 12:17:29", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#9dd00f\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"27px|0px|11px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Crafers Residence</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\" prev_background_color=\"#9dd00f\" next_background_color=\"#000000\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235,250,246\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\" prev_background_color=\"#000000\"][et_pb_fullwidth_image _builder_version=\"3.0.106\" /][/et_pb_section]", "The Haus Studio Apartments", "", "inherit", "closed", "closed", "", "613-revision-v1", "", "", "2018-06-10 12:17:29", "2018-06-10 12:17:29", "", "613", "https://beyondink.alluredigitalmarketing.com.au/613-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1020", "1", "2018-07-18 10:31:51", "2018-07-18 10:31:51", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>The Manna Motel of Hahndorf</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row background_color=\"#f1f1f1\" _builder_version=\"3.0.106\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The Manna is part of the Hahndofrm Accommodation Group, owned by the Duffield family.</p>\n<p>The site used to be \'The Marketplace in Hahndorf\' - not really a market, but more of a courtyard surrounded by shops. Now \'The Manna\' is a 4 start motel with 50 modern and stylish hotel rooms.</p>\n<p><strong>Our Involvement: Design, Project Management, Town Planning, Cost Control</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"646,647,648,649,650,651,652,653,654,655,656\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "The Manna Motel of Hahndorf", "", "inherit", "closed", "closed", "", "642-revision-v1", "", "", "2018-07-18 10:31:51", "2018-07-18 10:31:51", "", "642", "https://beyondink.alluredigitalmarketing.com.au/642-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("616", "1", "2018-06-10 12:20:10", "2018-06-10 12:20:10", "", "The Haus Studio Apartments", "", "inherit", "open", "closed", "", "58769_468825193140877_581070709_n", "", "", "2018-06-10 12:20:51", "2018-06-10 12:20:51", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/58769_468825193140877_581070709_n.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("617", "1", "2018-06-10 12:20:11", "2018-06-10 12:20:11", "", "The Haus Studio Apartments", "", "inherit", "open", "closed", "", "306591_468825109807552_808447832_n", "", "", "2018-06-10 12:20:48", "2018-06-10 12:20:48", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/306591_468825109807552_808447832_n.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("618", "1", "2018-06-10 12:20:14", "2018-06-10 12:20:14", "", "The Haus Studio Apartments", "", "inherit", "open", "closed", "", "340925_337597289597002_834197119_o", "", "", "2018-06-10 12:20:44", "2018-06-10 12:20:44", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/340925_337597289597002_834197119_o.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("619", "1", "2018-06-10 12:20:16", "2018-06-10 12:20:16", "", "The Haus Studio Apartments", "", "inherit", "open", "closed", "", "431772_468825116474218_1086552026_n", "", "", "2018-06-10 12:20:41", "2018-06-10 12:20:41", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/431772_468825116474218_1086552026_n.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("620", "1", "2018-06-10 12:20:18", "2018-06-10 12:20:18", "", "The Haus Studio Apartments", "", "inherit", "open", "closed", "", "img_2666", "", "", "2018-06-10 12:20:39", "2018-06-10 12:20:39", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/img_2666.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("621", "1", "2018-06-10 12:20:22", "2018-06-10 12:20:22", "", "The Haus Studio Apartments", "", "inherit", "open", "closed", "", "img_26711-2", "", "", "2018-06-10 12:20:35", "2018-06-10 12:20:35", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/img_26711.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("622", "1", "2018-06-10 12:21:50", "2018-06-10 12:21:50", "", "The Haus Studio Apartments", "", "inherit", "open", "closed", "", "548745_468825066474223_249261207_n", "", "", "2018-06-10 12:21:57", "2018-06-10 12:21:57", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/548745_468825066474223_249261207_n.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("623", "1", "2018-06-10 12:21:53", "2018-06-10 12:21:53", "", "The Haus Studio Apartments", "", "inherit", "open", "closed", "", "img_2664", "", "", "2018-06-10 12:22:03", "2018-06-10 12:22:03", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/img_2664.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("624", "1", "2018-06-10 12:23:24", "2018-06-10 12:23:24", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>The Haus Studio Apartments</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"616,618,619,621\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "The Haus Studio Apartments", "", "inherit", "closed", "closed", "", "613-revision-v1", "", "", "2018-06-10 12:23:24", "2018-06-10 12:23:24", "", "613", "https://beyondink.alluredigitalmarketing.com.au/613-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("626", "1", "2018-06-10 12:23:49", "2018-06-10 12:23:49", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/North-East-Corner-Dulux-Gunmetal-Kinetic.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Commercial Projects</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"50px|0px|27px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Lane-Winery.jpg\" _builder_version=\"3.0.106\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-lane-vineyard/\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Lane Winery</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Barker-Plaza-Entrance-800x534.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/barker-plaza/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Barker Plaza Shopping Centre</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Hahndorf.jpg\" _builder_version=\"3.0.106\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-haus-cafebarkitchen/\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Haus Cafe+Bar+Kitchen</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Studio-Apartments.jpg\" _builder_version=\"3.0.106\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-manna-apartments-2/\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Haus Studio Apartments</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/K1-Winery-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/k1-winery/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">K1 Winery</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/55708_165645590125507_7049646_o.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Manna Motel of Hahndorf</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Inavogue-Showroom-2-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/inavogue-showroom/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Inavogue Showroom</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Pulteney-Plaza-Apartments-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/pulteney-plaza-adelaide/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Pulteney Plaza Apartments</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Rivercorp-Monarto-Apple-Processing-Plant.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Rivercorp Monarto Apple Processing Facility</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Elders-Strathalbyn-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/elders-strathalbyn/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Elders Strathalbyn</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Commercial", "", "inherit", "closed", "closed", "", "175-revision-v1", "", "", "2018-06-10 12:23:49", "2018-06-10 12:23:49", "", "175", "https://beyondink.alluredigitalmarketing.com.au/175-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("684", "1", "2018-06-10 12:50:18", "2018-06-10 12:50:18", "", "The Hahndorf Academy", "", "inherit", "open", "closed", "", "422543_322878064414514_186815890_n", "", "", "2018-06-10 12:51:47", "2018-06-10 12:51:47", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/422543_322878064414514_186815890_n.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("628", "1", "2018-06-10 12:25:22", "2018-06-10 12:25:22", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#9dd00f\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"27px|0px|11px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Crafers Residence</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\" prev_background_color=\"#9dd00f\" next_background_color=\"#000000\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235,250,246\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\" prev_background_color=\"#000000\"][et_pb_fullwidth_image _builder_version=\"3.0.106\" /][/et_pb_section]", "Rivercorp Monarto Apple Processing Facility", "", "inherit", "closed", "closed", "", "576-revision-v1", "", "", "2018-06-10 12:25:22", "2018-06-10 12:25:22", "", "576", "https://beyondink.alluredigitalmarketing.com.au/576-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1417", "1", "2018-07-24 12:22:27", "2018-07-24 12:22:27", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Barker Plaza Shopping Centre</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The Barker Plaza Shopping Centre had started to become very tired and dated. With Aldi Supermarkets moving in to the centre, the property owner engaged us to give the whole shopping centre a revamp.</p>\n<p><strong>Our Involvement: Design, Project Management, Interior Design, Town Planning, Cost Control</strong></p>\n<p>Builder: <a href=\"http://bellabuildanddesign.com.au/\" target=\"_blank\" rel=\"noopener noreferrer\">Bella Build &amp; Design</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"522,523,524,525\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Barker Plaza Shopping Centre", "", "inherit", "closed", "closed", "", "519-revision-v1", "", "", "2018-07-24 12:22:27", "2018-07-24 12:22:27", "", "519", "https://beyondink.alluredigitalmarketing.com.au/519-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1028", "1", "2018-07-18 10:38:13", "2018-07-18 10:38:13", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Barker Plaza Shopping Centre</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row background_color=\"#f1f1f1\" _builder_version=\"3.0.106\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The Barker Plaza Shopping Centre had become very tired and dated. Then with Aldi Supermarkets wanting to move into Mt Barker, in order to accommodate the new store, the property owner took the opportunity to give the whole shopping centre a revamp.</p>\n<p>Our involvement: Design, Project Management, Interior Design, Town Planning, Cost Control</p>\n<p>Builder: <a href=\"http://bellabuildanddesign.com.au/\" target=\"_blank\" rel=\"noopener noreferrer\">Bella Build &amp; Design</a></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"522,523,524,525\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Barker Plaza Shopping Centre", "", "inherit", "closed", "closed", "", "519-revision-v1", "", "", "2018-07-18 10:38:13", "2018-07-18 10:38:13", "", "519", "https://beyondink.alluredigitalmarketing.com.au/519-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("631", "1", "2018-06-10 12:29:43", "2018-06-10 12:29:43", "", "Rivercorp Monarto Apple Processing Facility", "", "inherit", "open", "closed", "", "img_3051", "", "", "2018-06-10 12:30:28", "2018-06-10 12:30:28", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/img_3051.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("632", "1", "2018-06-10 12:29:46", "2018-06-10 12:29:46", "", "Rivercorp Monarto Apple Processing Facility", "", "inherit", "open", "closed", "", "img_3052", "", "", "2018-06-10 12:30:25", "2018-06-10 12:30:25", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/img_3052.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("633", "1", "2018-06-10 12:29:49", "2018-06-10 12:29:49", "", "Rivercorp Monarto Apple Processing Facility", "", "inherit", "open", "closed", "", "img_3054", "", "", "2018-06-10 12:30:23", "2018-06-10 12:30:23", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/img_3054.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("634", "1", "2018-06-10 12:29:51", "2018-06-10 12:29:51", "", "Rivercorp Monarto Apple Processing Facility", "", "inherit", "open", "closed", "", "img_3056", "", "", "2018-06-10 12:30:20", "2018-06-10 12:30:20", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/img_3056.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("635", "1", "2018-06-10 12:29:53", "2018-06-10 12:29:53", "", "Rivercorp Monarto Apple Processing Facility", "", "inherit", "open", "closed", "", "img_3057", "", "", "2018-06-10 12:30:17", "2018-06-10 12:30:17", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/img_3057.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("636", "1", "2018-06-10 12:29:56", "2018-06-10 12:29:56", "", "Rivercorp Monarto Apple Processing Facility", "", "inherit", "open", "closed", "", "img_3058", "", "", "2018-06-10 12:30:13", "2018-06-10 12:30:13", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/img_3058.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("637", "1", "2018-06-10 12:29:58", "2018-06-10 12:29:58", "", "Rivercorp Monarto Apple Processing Facility", "", "inherit", "open", "closed", "", "rivercorp-monarto-apple-processing-plant-2", "", "", "2018-06-10 12:30:10", "2018-06-10 12:30:10", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Rivercorp-Monarto-Apple-Processing-Plant-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("638", "1", "2018-06-10 12:30:48", "2018-06-10 12:30:48", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Rivercorp Monarto Apple Processing Facility</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"631,632,633,634,635,636,637\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Rivercorp Monarto Apple Processing Facility", "", "inherit", "closed", "closed", "", "576-revision-v1", "", "", "2018-06-10 12:30:48", "2018-06-10 12:30:48", "", "576", "https://beyondink.alluredigitalmarketing.com.au/576-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("640", "1", "2018-06-10 12:31:20", "2018-06-10 12:31:20", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/North-East-Corner-Dulux-Gunmetal-Kinetic.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Commercial Projects</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"50px|0px|27px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Lane-Winery.jpg\" _builder_version=\"3.0.106\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-lane-vineyard/\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Lane Winery</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Barker-Plaza-Entrance-800x534.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/barker-plaza/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Barker Plaza Shopping Centre</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Hahndorf.jpg\" _builder_version=\"3.0.106\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-haus-cafebarkitchen/\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Haus Cafe+Bar+Kitchen</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Studio-Apartments.jpg\" _builder_version=\"3.0.106\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-manna-apartments-2/\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Haus Studio Apartments</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/K1-Winery-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/k1-winery/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">K1 Winery</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/55708_165645590125507_7049646_o.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Manna Motel of Hahndorf</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Inavogue-Showroom-2-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/inavogue-showroom/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Inavogue Showroom</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Pulteney-Plaza-Apartments-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/pulteney-plaza-adelaide/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Pulteney Plaza Apartments</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Rivercorp-Monarto-Apple-Processing-Plant.jpg\" _builder_version=\"3.0.106\" url=\"https://beyondink.alluredigitalmarketing.com.au/rivercorp-monarto-apple-processing-facility/\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Rivercorp Monarto Apple Processing Facility</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Elders-Strathalbyn-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/elders-strathalbyn/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Elders Strathalbyn</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Commercial", "", "inherit", "closed", "closed", "", "175-revision-v1", "", "", "2018-06-10 12:31:20", "2018-06-10 12:31:20", "", "175", "https://beyondink.alluredigitalmarketing.com.au/175-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("660", "1", "2018-06-10 12:43:07", "2018-06-10 12:43:07", " ", "", "", "publish", "closed", "closed", "", "660", "", "", "2018-07-30 02:30:40", "2018-07-30 02:30:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?p=660", "11", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("642", "1", "2018-06-10 12:34:03", "2018-06-10 12:34:03", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>The Manna Motel of Hahndorf</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The Manna, a 4-start motel with 50 hotel rooms, is part of the <a href=\"http://www.hahndorfaccommodation.com.au/\" target=\"_blank\" rel=\"noopener noreferrer\">Hahndorf Accommodation Group</a>, owned by the Duffield family.</p>\n<p>The Manna site used to be \'The Marketplace in Hahndorf\' - not necessarily a market, but more of a courtyard surrounded by shops.</p>\n<p><strong>Our Involvement: Design, Project Management, Town Planning, Cost Control</strong></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"654,1289,1290,1291,1292,1293,1294,1295,1296,1298,1299,1300\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "The Manna Motel of Hahndorf", "", "publish", "closed", "closed", "", "the-manna-motel-of-hahndorf", "", "", "2018-07-24 09:58:38", "2018-07-24 09:58:38", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=642", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("643", "1", "2018-06-10 12:33:32", "2018-06-10 12:33:32", "[et_pb_section bb_built=\"1\"][et_pb_row][/et_pb_row][/et_pb_section]", "The Manna Motel of Hahndorf", "", "inherit", "closed", "closed", "", "642-revision-v1", "", "", "2018-06-10 12:33:32", "2018-06-10 12:33:32", "", "642", "https://beyondink.alluredigitalmarketing.com.au/642-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("644", "1", "2018-06-10 12:34:03", "2018-06-10 12:34:03", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#9dd00f\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"27px|0px|11px|0px\" _builder_version=\"3.0.92\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Crafers Residence</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\" prev_background_color=\"#9dd00f\" next_background_color=\"#000000\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235,250,246\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\" prev_background_color=\"#000000\"][et_pb_fullwidth_image _builder_version=\"3.0.106\" /][/et_pb_section]", "The Manna Motel of Hahndorf", "", "inherit", "closed", "closed", "", "642-revision-v1", "", "", "2018-06-10 12:34:03", "2018-06-10 12:34:03", "", "642", "https://beyondink.alluredigitalmarketing.com.au/642-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1022", "1", "2018-07-18 10:32:08", "2018-07-18 10:32:08", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>The Manna Motel of Hahndorf</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row background_color=\"#f1f1f1\" _builder_version=\"3.0.106\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The Manna is part of the Hahndorf Accommodation Group, owned by the Duffield family.</p>\n<p>The site used to be \'The Marketplace in Hahndorf\' - not really a market, but more of a courtyard surrounded by shops. Now \'The Manna\' is a 4 star motel with 50 modern and stylish hotel rooms.</p>\n<p><strong>Our Involvement: Design, Project Management, Town Planning, Cost Control</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"646,647,648,649,650,651,652,653,654,655,656\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "The Manna Motel of Hahndorf", "", "inherit", "closed", "closed", "", "642-revision-v1", "", "", "2018-07-18 10:32:08", "2018-07-18 10:32:08", "", "642", "https://beyondink.alluredigitalmarketing.com.au/642-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("646", "1", "2018-06-10 12:36:42", "2018-06-10 12:36:42", "", "The Manna Motel of Hahndorf", "", "inherit", "open", "closed", "", "23919_481957031827693_1455616294_n", "", "", "2018-06-10 12:37:57", "2018-06-10 12:37:57", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/23919_481957031827693_1455616294_n.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("647", "1", "2018-06-10 12:36:44", "2018-06-10 12:36:44", "", "The Manna Motel of Hahndorf", "", "inherit", "open", "closed", "", "55708_165645590125507_7049646_o-1", "", "", "2018-06-10 12:37:54", "2018-06-10 12:37:54", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/55708_165645590125507_7049646_o-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("648", "1", "2018-06-10 12:36:46", "2018-06-10 12:36:46", "", "The Manna Motel of Hahndorf", "", "inherit", "open", "closed", "", "74024_164896060200460_5837306_n", "", "", "2018-06-10 12:37:51", "2018-06-10 12:37:51", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/74024_164896060200460_5837306_n.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("649", "1", "2018-06-10 12:36:48", "2018-06-10 12:36:48", "", "The Manna Motel of Hahndorf", "", "inherit", "open", "closed", "", "388101_289377961085602_2073435968_n", "", "", "2018-06-10 12:37:49", "2018-06-10 12:37:49", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/388101_289377961085602_2073435968_n.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("650", "1", "2018-06-10 12:36:49", "2018-06-10 12:36:49", "", "The Manna Motel of Hahndorf", "", "inherit", "open", "closed", "", "526854_601993999823995_1523933766_n", "", "", "2018-06-10 12:37:44", "2018-06-10 12:37:44", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/526854_601993999823995_1523933766_n.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("651", "1", "2018-06-10 12:36:51", "2018-06-10 12:36:51", "", "The Manna Motel of Hahndorf", "", "inherit", "open", "closed", "", "1014519_572681499421912_1951969464_o", "", "", "2018-06-10 12:37:42", "2018-06-10 12:37:42", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/1014519_572681499421912_1951969464_o.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("652", "1", "2018-06-10 12:36:52", "2018-06-10 12:36:52", "", "The Manna Motel of Hahndorf", "", "inherit", "open", "closed", "", "1237773_608236982533030_822563764_n", "", "", "2018-06-10 12:37:38", "2018-06-10 12:37:38", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/1237773_608236982533030_822563764_n.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("653", "1", "2018-06-10 12:36:54", "2018-06-10 12:36:54", "", "The Manna Motel of Hahndorf", "", "inherit", "open", "closed", "", "add", "", "", "2018-06-10 12:37:35", "2018-06-10 12:37:35", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/add.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("654", "1", "2018-06-10 12:36:55", "2018-06-10 12:36:55", "", "The Manna Motel of Hahndorf", "", "inherit", "open", "closed", "", "add2", "", "", "2018-06-10 12:37:33", "2018-06-10 12:37:33", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/add2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("655", "1", "2018-06-10 12:36:59", "2018-06-10 12:36:59", "", "The Manna Motel of Hahndorf", "", "inherit", "open", "closed", "", "ff", "", "", "2018-06-10 12:37:30", "2018-06-10 12:37:30", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/ff.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("656", "1", "2018-06-10 12:37:09", "2018-06-10 12:37:09", "", "The Manna Motel of Hahndorf", "", "inherit", "open", "closed", "", "trg", "", "", "2018-06-10 12:37:21", "2018-06-10 12:37:21", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/trg.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("657", "1", "2018-06-10 12:38:19", "2018-06-10 12:38:19", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>The Manna Motel of Hahndorf</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"646,647,648,649,650,651,652,653,654,655,656\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "The Manna Motel of Hahndorf", "", "inherit", "closed", "closed", "", "642-revision-v1", "", "", "2018-06-10 12:38:19", "2018-06-10 12:38:19", "", "642", "https://beyondink.alluredigitalmarketing.com.au/642-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("659", "1", "2018-06-10 12:39:14", "2018-06-10 12:39:14", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/North-East-Corner-Dulux-Gunmetal-Kinetic.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Commercial Projects</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"50px|0px|27px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Lane-Winery.jpg\" _builder_version=\"3.0.106\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-lane-vineyard/\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Lane Winery</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Barker-Plaza-Entrance-800x534.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/barker-plaza/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Barker Plaza Shopping Centre</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Hahndorf.jpg\" _builder_version=\"3.0.106\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-haus-cafebarkitchen/\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Haus Cafe+Bar+Kitchen</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Studio-Apartments.jpg\" _builder_version=\"3.0.106\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-manna-apartments-2/\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Haus Studio Apartments</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/K1-Winery-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/k1-winery/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">K1 Winery</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/55708_165645590125507_7049646_o.jpg\" _builder_version=\"3.0.106\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-manna-motel-of-hahndorf/\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Manna Motel of Hahndorf</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Inavogue-Showroom-2-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/inavogue-showroom/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Inavogue Showroom</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Pulteney-Plaza-Apartments-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/pulteney-plaza-adelaide/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Pulteney Plaza Apartments</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Rivercorp-Monarto-Apple-Processing-Plant.jpg\" _builder_version=\"3.0.106\" url=\"https://beyondink.alluredigitalmarketing.com.au/rivercorp-monarto-apple-processing-facility/\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Rivercorp Monarto Apple Processing Facility</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Elders-Strathalbyn-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/elders-strathalbyn/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Elders Strathalbyn</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Commercial", "", "inherit", "closed", "closed", "", "175-revision-v1", "", "", "2018-06-10 12:39:14", "2018-06-10 12:39:14", "", "175", "https://beyondink.alluredigitalmarketing.com.au/175-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("685", "1", "2018-06-10 12:50:19", "2018-06-10 12:50:19", "", "The Hahndorf Academy", "", "inherit", "open", "closed", "", "431005_322878134414507_1647380480_n", "", "", "2018-06-10 12:51:44", "2018-06-10 12:51:44", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/431005_322878134414507_1647380480_n.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("686", "1", "2018-06-10 12:50:24", "2018-06-10 12:50:24", "", "The Hahndorf Academy", "", "inherit", "open", "closed", "", "img_0181-800x533", "", "", "2018-06-10 12:51:42", "2018-06-10 12:51:42", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0181-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("687", "1", "2018-06-10 12:50:29", "2018-06-10 12:50:29", "", "The Hahndorf Academy", "", "inherit", "open", "closed", "", "img_0182-800x533-2", "", "", "2018-06-10 12:51:39", "2018-06-10 12:51:39", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0182-800x533-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("688", "1", "2018-06-10 12:50:33", "2018-06-10 12:50:33", "", "The Hahndorf Academy", "", "inherit", "open", "closed", "", "img_0183-800x533", "", "", "2018-06-10 12:51:35", "2018-06-10 12:51:35", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0183-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("689", "1", "2018-06-10 12:50:37", "2018-06-10 12:50:37", "", "The Hahndorf Academy", "", "inherit", "open", "closed", "", "img_0184-800x533", "", "", "2018-06-10 12:51:27", "2018-06-10 12:51:27", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0184-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("690", "1", "2018-06-10 12:50:41", "2018-06-10 12:50:41", "", "The Hahndorf Academy", "", "inherit", "open", "closed", "", "img_0189-800x533", "", "", "2018-06-10 12:51:24", "2018-06-10 12:51:24", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0189-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("691", "1", "2018-06-10 12:50:45", "2018-06-10 12:50:45", "", "The Hahndorf Academy", "", "inherit", "open", "closed", "", "img_0192-800x533", "", "", "2018-06-10 12:51:21", "2018-06-10 12:51:21", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0192-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("692", "1", "2018-06-10 12:50:49", "2018-06-10 12:50:49", "", "The Hahndorf Academy", "", "inherit", "open", "closed", "", "img_6211-800x533-3", "", "", "2018-06-10 12:51:18", "2018-06-10 12:51:18", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6211-800x533-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("693", "1", "2018-06-10 12:50:51", "2018-06-10 12:50:51", "", "The Hahndorf Academy", "", "inherit", "open", "closed", "", "the-hahndorf-academy-mark-richards", "", "", "2018-06-10 12:51:14", "2018-06-10 12:51:14", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/the-hahndorf-academy-mark-richards.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("694", "1", "2018-06-10 12:52:56", "2018-06-10 12:52:56", "", "Skilly Hills Function Centre", "", "inherit", "open", "closed", "", "skilly-hills-1-2-2", "", "", "2018-06-10 12:53:10", "2018-06-10 12:53:10", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Skilly-Hills-1-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("716", "1", "2018-06-10 13:07:30", "2018-06-10 13:07:30", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/North-East-Corner-Dulux-Gunmetal-Kinetic.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Coming Soon</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"92px|0px|27px|0px\" admin_label=\"Blog Posts Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" align=\"center\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Front-Entry-Portal-Dulux-Gunmetal-Kinetic-800x410.jpg\" align=\"center\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/BAR-1-800x362.jpg\" align=\"center\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Main-Foyer-800x480.jpg\" align=\"center\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "Coming Soon Page", "", "publish", "closed", "closed", "", "coming-soon-page", "", "", "2018-06-10 13:07:30", "2018-06-10 13:07:30", "", "0", "https://beyondink.alluredigitalmarketing.com.au/et_pb_layout/coming-soon-page/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("695", "1", "2018-06-10 12:54:25", "2018-06-10 12:54:25", "", "Skilly Hills Function Centre & Renovation Project", "", "inherit", "open", "closed", "", "img_6211-800x533-4", "", "", "2018-06-10 12:59:29", "2018-06-10 12:59:29", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6211-800x533-3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("696", "1", "2018-06-10 12:54:55", "2018-06-10 12:54:55", "[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0)\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" custom_margin=\"-25px||-25px|\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|0px||0px\"][et_pb_row custom_padding=\"20px|0px|19px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Renovations</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row _builder_version=\"3.0.106\" custom_padding=\"50px|0px|27px|0px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0182-800x533-1.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Hahndorf Academy</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6211-800x533-3.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Skilly Hills Function Centre and Renovation Project</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Renovations", "", "inherit", "closed", "closed", "", "204-revision-v1", "", "", "2018-06-10 12:54:55", "2018-06-10 12:54:55", "", "204", "https://beyondink.alluredigitalmarketing.com.au/204-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("699", "1", "2018-06-10 12:57:11", "2018-06-10 12:57:11", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#9dd00f\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"27px|0px|11px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Crafers Residence</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\" prev_background_color=\"#9dd00f\" next_background_color=\"#000000\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235,250,246\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\" prev_background_color=\"#000000\"][et_pb_fullwidth_image _builder_version=\"3.0.106\" /][/et_pb_section]", "Skilly Hills Function Centre & Renovation Project", "", "inherit", "closed", "closed", "", "698-revision-v1", "", "", "2018-06-10 12:57:11", "2018-06-10 12:57:11", "", "698", "https://beyondink.alluredigitalmarketing.com.au/698-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("706", "1", "2018-06-10 13:00:19", "2018-06-10 13:00:19", "[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0)\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" custom_margin=\"-25px||-25px|\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|0px||0px\"][et_pb_row custom_padding=\"20px|0px|19px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Renovations</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row _builder_version=\"3.0.106\" custom_padding=\"50px|0px|27px|0px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0182-800x533-1.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Hahndorf Academy</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6211-800x533-3.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/skilly-hills-function-centre-restoration-project/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Skilly Hills Function Centre and Renovation Project</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Renovations", "", "inherit", "closed", "closed", "", "204-revision-v1", "", "", "2018-06-10 13:00:19", "2018-06-10 13:00:19", "", "204", "https://beyondink.alluredigitalmarketing.com.au/204-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("701", "1", "2018-06-10 12:58:40", "2018-06-10 12:58:40", "", "Skilly Hills Function Centre & Renovation Project", "", "inherit", "open", "closed", "", "7-2", "", "", "2018-06-10 12:59:25", "2018-06-10 12:59:25", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/7.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("702", "1", "2018-06-10 12:58:48", "2018-06-10 12:58:48", "", "Skilly Hills Function Centre & Renovation Project", "", "inherit", "open", "closed", "", "img_6211-800x533-5", "", "", "2018-06-10 12:59:05", "2018-06-10 12:59:05", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6211-800x533-4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("703", "1", "2018-06-10 12:58:55", "2018-06-10 12:58:55", "", "Skilly Hills Function Centre & Renovation Project", "", "inherit", "open", "closed", "", "skilly-hills-1-3", "", "", "2018-06-10 12:59:20", "2018-06-10 12:59:20", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Skilly-Hills-1-3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("704", "1", "2018-06-10 12:59:06", "2018-06-10 12:59:06", "", "Skilly Hills Function Centre & Renovation Project", "", "inherit", "open", "closed", "", "skilly-hills-1-4", "", "", "2018-06-10 12:59:16", "2018-06-10 12:59:16", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Skilly-Hills-1-4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("705", "1", "2018-06-10 12:59:52", "2018-06-10 12:59:52", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Skilly Hills Function Centre &amp; Renovation Project</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"701,702,703,704\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Skilly Hills Function Centre & Renovation Project", "", "inherit", "closed", "closed", "", "698-revision-v1", "", "", "2018-06-10 12:59:52", "2018-06-10 12:59:52", "", "698", "https://beyondink.alluredigitalmarketing.com.au/698-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("714", "1", "2018-06-10 13:06:08", "2018-06-10 13:06:08", " ", "", "", "publish", "closed", "closed", "", "714", "", "", "2018-07-30 02:30:40", "2018-07-30 02:30:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?p=714", "27", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("715", "1", "2018-06-10 13:06:08", "2018-06-10 13:06:08", " ", "", "", "publish", "closed", "closed", "", "715", "", "", "2018-07-30 02:30:40", "2018-07-30 02:30:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?p=715", "26", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("709", "1", "2018-06-10 13:02:22", "2018-06-10 13:02:22", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#9dd00f\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"27px|0px|11px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Crafers Residence</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\" prev_background_color=\"#9dd00f\" next_background_color=\"#000000\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235,250,246\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\" prev_background_color=\"#000000\"][et_pb_fullwidth_image _builder_version=\"3.0.106\" /][/et_pb_section]", "The Hahndorf Academy", "", "inherit", "closed", "closed", "", "707-revision-v1", "", "", "2018-06-10 13:02:22", "2018-06-10 13:02:22", "", "707", "https://beyondink.alluredigitalmarketing.com.au/707-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("712", "1", "2018-06-10 13:05:20", "2018-06-10 13:05:20", "<p>[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]</p><h1>The Hahndorf Academy</h1><p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"683,684,685,686,688,689,691,693\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]</p>", "The Hahndorf Academy", "", "inherit", "closed", "closed", "", "707-autosave-v1", "", "", "2018-06-10 13:05:20", "2018-06-10 13:05:20", "", "707", "https://beyondink.alluredigitalmarketing.com.au/707-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("711", "1", "2018-06-10 13:05:05", "2018-06-10 13:05:05", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>The Hahndorf Academy</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"683,684,685,686,688,689,691,693\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "The Hahndorf Academy", "", "inherit", "closed", "closed", "", "707-revision-v1", "", "", "2018-06-10 13:05:05", "2018-06-10 13:05:05", "", "707", "https://beyondink.alluredigitalmarketing.com.au/707-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("769", "1", "2018-06-11 03:48:33", "2018-06-11 03:48:33", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Renovations</h1>\n<p>Lorem ipsum.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"50px|0px|27px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0182-800x533-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/hahndorf-academy/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Hahndorf Academy</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6211-800x533-3.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/skilly-hills-function-centre-restoration-project/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Skilly Hills Function Centre and Renovation Project</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Renovations", "", "inherit", "closed", "closed", "", "204-revision-v1", "", "", "2018-06-11 03:48:33", "2018-06-11 03:48:33", "", "204", "https://beyondink.alluredigitalmarketing.com.au/204-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("713", "1", "2018-06-10 13:05:26", "2018-06-10 13:05:26", "[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0)\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" custom_margin=\"-25px||-25px|\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|0px||0px\"][et_pb_row custom_padding=\"20px|0px|19px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Renovations</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row _builder_version=\"3.0.106\" custom_padding=\"50px|0px|27px|0px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0182-800x533-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/hahndorf-academy/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Hahndorf Academy</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6211-800x533-3.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/skilly-hills-function-centre-restoration-project/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Skilly Hills Function Centre and Renovation Project</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Renovations", "", "inherit", "closed", "closed", "", "204-revision-v1", "", "", "2018-06-10 13:05:26", "2018-06-10 13:05:26", "", "204", "https://beyondink.alluredigitalmarketing.com.au/204-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("717", "1", "2018-06-10 13:07:38", "2018-06-10 13:07:38", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/North-East-Corner-Dulux-Gunmetal-Kinetic.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Coming Soon</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"92px|0px|27px|0px\" admin_label=\"Blog Posts Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" align=\"center\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Front-Entry-Portal-Dulux-Gunmetal-Kinetic-800x410.jpg\" align=\"center\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/BAR-1-800x362.jpg\" align=\"center\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Main-Foyer-800x480.jpg\" align=\"center\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "Coming Soon", "", "inherit", "closed", "closed", "", "195-revision-v1", "", "", "2018-06-10 13:07:38", "2018-06-10 13:07:38", "", "195", "https://beyondink.alluredigitalmarketing.com.au/195-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("718", "1", "2018-06-10 13:09:08", "2018-06-10 13:09:08", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Racing at Gifford Hill - Murray Bridge Racing Club</h1>\n<p><span style=\"color: #ffffff;\"></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"Our projects range from major regional developments, to grand home designs. You can feel at ease with our beginning-to-end design, construction, and project management expertise.\" _builder_version=\"3.0.106\" custom_padding=\"30px|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>We\'re proud to be responsible for the redesign and project management of the new $20 million state-of-the-art Murray Bridge Racing Club at Gifford Hill.</p>\n<p><strong>Our Involvement: Redesign of Project, Interior Design, Cost Control, Project Management </strong></p>\n<p>Builder: <a href=\"https://marshallbrougham.com.au\" target=\"_blank\" rel=\"noopener noreferrer\">Marshall &amp; Brougham</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/North-East-Corner-Dulux-Gunmetal-Kinetic-800x254.jpg\" align=\"center\" _builder_version=\"3.0.106\" custom_margin=\"25px|||\"][/et_pb_image][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" align=\"center\" _builder_version=\"3.0.106\" custom_margin=\"||25px|\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>Set to open early 2019, this world-class racetrack development - with function centre, food and beverage outlets, and <g class=\"gr_ gr_5 gr-alert gr_spell gr_inline_cards gr_run_anim ContextualSpelling ins-del multiReplace\" id=\"5\" data-gr-id=\"5\">raceday</g> facilities - is located just an hour\'s drive from Adelaide.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][et_pb_gallery gallery_ids=\"144,200,726,727\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" custom_margin=\"25px|||\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Racing at Gifford Hill - Murray Bridge Racing Club", "", "publish", "closed", "closed", "", "murray-bridge-racing-club", "", "", "2018-07-24 12:42:54", "2018-07-24 12:42:54", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=718", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("721", "1", "2018-06-10 13:11:48", "2018-06-10 13:11:48", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Racing at Gifford Hill - Murray Bridge Racing Club</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235,250,246,146,144,132,200,201\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Racing at Gifford Hill - Murray Bridge Racing Club", "", "inherit", "closed", "closed", "", "718-revision-v1", "", "", "2018-06-10 13:11:48", "2018-06-10 13:11:48", "", "718", "https://beyondink.alluredigitalmarketing.com.au/718-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("719", "1", "2018-06-10 13:09:08", "2018-06-10 13:09:08", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/North-East-Corner-Dulux-Gunmetal-Kinetic.jpg\" custom_padding=\"10%|0px|123px|0px\" next_background_color=\"#000000\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"27px|0px|11px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Coming Soon</h1>\r\nMauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\" prev_background_color=\"#000000\"][et_pb_row admin_label=\"Blog Posts Row\" custom_padding=\"92px|0px|27px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" align=\"center\" _builder_version=\"3.0.106\" /][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Front-Entry-Portal-Dulux-Gunmetal-Kinetic-800x410.jpg\" align=\"center\" _builder_version=\"3.0.106\" /][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/BAR-1-800x362.jpg\" align=\"center\" _builder_version=\"3.0.106\" /][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Main-Foyer-800x480.jpg\" align=\"center\" _builder_version=\"3.0.106\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Racing at Gifford Hill - Murray Bridge Racing Club", "", "inherit", "closed", "closed", "", "718-revision-v1", "", "", "2018-06-10 13:09:08", "2018-06-10 13:09:08", "", "718", "https://beyondink.alluredigitalmarketing.com.au/718-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("731", "1", "2018-06-11 00:28:59", "2018-06-11 00:28:59", "#top-menu .current-menu-item a::before,\r\n#top-menu .current_page_item a::before {\r\n content: \"\";\r\n position: absolute;\r\n z-index: 2;\r\n left: 0;\r\n right: 0;\r\n}\r\n#top-menu li a:before {\r\n content: \"\";\r\n position: absolute;\r\n z-index: -2;\r\n left: 0;\r\n right: 100%;\r\n bottom: 50%;\r\n background: #15bf86; /*** COLOR OF THE LINE ***/\r\n height: 3px; /*** THICKNESS OF THE LINE ***/\r\n -webkit-transition-property: right;\r\n transition-property: right;\r\n -webkit-transition-duration: 0.3s;\r\n transition-duration: 0.3s;\r\n -webkit-transition-timing-function: ease-out;\r\n transition-timing-function: ease-out;\r\n}\r\n#top-menu li a:hover {\r\n opacity: 1 !important;\r\n}\r\n#top-menu li a:hover:before {\r\n right: 0;\r\n}\r\n#top-menu li li a:before {\r\n bottom: 10%;\r\n}", "Divi-child", "", "inherit", "closed", "closed", "", "16-revision-v1", "", "", "2018-06-11 00:28:59", "2018-06-11 00:28:59", "", "16", "https://beyondink.alluredigitalmarketing.com.au/16-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("732", "1", "2018-06-11 00:29:18", "2018-06-11 00:29:18", "#top-menu .current-menu-item a::before,\r\n#top-menu .current_page_item a::before {\r\n content: \"\";\r\n position: absolute;\r\n z-index: 2;\r\n left: 0;\r\n right: 0;\r\n}\r\n#top-menu li a:before {\r\n content: \"\";\r\n position: absolute;\r\n z-index: -2;\r\n left: 0;\r\n right: 100%;\r\n bottom: 50%;\r\n background: #cccccc; /*** COLOR OF THE LINE ***/\r\n height: 3px; /*** THICKNESS OF THE LINE ***/\r\n -webkit-transition-property: right;\r\n transition-property: right;\r\n -webkit-transition-duration: 0.3s;\r\n transition-duration: 0.3s;\r\n -webkit-transition-timing-function: ease-out;\r\n transition-timing-function: ease-out;\r\n}\r\n#top-menu li a:hover {\r\n opacity: 1 !important;\r\n}\r\n#top-menu li a:hover:before {\r\n right: 0;\r\n}\r\n#top-menu li li a:before {\r\n bottom: 10%;\r\n}", "Divi-child", "", "inherit", "closed", "closed", "", "16-revision-v1", "", "", "2018-06-11 00:29:18", "2018-06-11 00:29:18", "", "16", "https://beyondink.alluredigitalmarketing.com.au/16-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("723", "1", "2018-06-10 13:15:18", "2018-06-10 13:15:18", "", "Murray Bridge Racing Club", "", "inherit", "open", "closed", "", "north-east-corner-dulux-gunmetal-kinetic-800x254", "", "", "2018-06-11 00:17:50", "2018-06-11 00:17:50", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/North-East-Corner-Dulux-Gunmetal-Kinetic-800x254.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("725", "1", "2018-06-11 00:17:32", "2018-06-11 00:17:32", "", "Murray Bridge Racing Club", "", "inherit", "open", "closed", "", "entry-portal-2-800x381", "", "", "2018-06-11 00:17:53", "2018-06-11 00:17:53", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Entry-Portal-2-800x381.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("726", "1", "2018-06-11 00:22:06", "2018-06-11 00:22:06", "", "Murray Bridge Racing Club", "", "inherit", "open", "closed", "", "main-foyer-800x480-2", "", "", "2018-06-11 00:22:12", "2018-06-11 00:22:12", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Main-Foyer-800x480.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("727", "1", "2018-06-11 00:23:22", "2018-06-11 00:23:22", "", "Murray Bridge Racing Club", "", "inherit", "open", "closed", "", "mbrc-internal-perspective-committeemembers-airlock-800x651", "", "", "2018-06-11 00:23:30", "2018-06-11 00:23:30", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/MBRC-Internal-Perspective-COMMITTEEMEMBERS-AIRLOCK-800x651.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("729", "1", "2018-06-11 00:25:12", "2018-06-11 00:25:12", "", "Racing at Gifford Hill – Murray Bridge Racing Club", "", "publish", "closed", "closed", "", "racing-at-gifford-hill-murray-bridge-racing-club", "", "", "2018-07-30 02:30:40", "2018-07-30 02:30:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?p=729", "33", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("728", "1", "2018-06-11 00:24:43", "2018-06-11 00:24:43", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Racing at Gifford Hill - Murray Bridge Racing Club</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/North-East-Corner-Dulux-Gunmetal-Kinetic-800x254.jpg\" _builder_version=\"3.0.106\" align=\"center\"][/et_pb_image][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" _builder_version=\"3.0.106\" align=\"center\" custom_margin=\"25px|||\"][/et_pb_image][et_pb_gallery gallery_ids=\"144,200,726,727\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" custom_margin=\"25px|||\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Racing at Gifford Hill - Murray Bridge Racing Club", "", "inherit", "closed", "closed", "", "718-revision-v1", "", "", "2018-06-11 00:24:43", "2018-06-11 00:24:43", "", "718", "https://beyondink.alluredigitalmarketing.com.au/718-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("733", "1", "2018-06-11 00:29:30", "2018-06-11 00:29:30", "#top-menu .current-menu-item a::before,\r\n#top-menu .current_page_item a::before {\r\n content: \"\";\r\n position: absolute;\r\n z-index: 2;\r\n left: 0;\r\n right: 0;\r\n}\r\n#top-menu li a:before {\r\n content: \"\";\r\n position: absolute;\r\n z-index: -2;\r\n left: 0;\r\n right: 100%;\r\n bottom: 50%;\r\n background: #000000; /*** COLOR OF THE LINE ***/\r\n height: 3px; /*** THICKNESS OF THE LINE ***/\r\n -webkit-transition-property: right;\r\n transition-property: right;\r\n -webkit-transition-duration: 0.3s;\r\n transition-duration: 0.3s;\r\n -webkit-transition-timing-function: ease-out;\r\n transition-timing-function: ease-out;\r\n}\r\n#top-menu li a:hover {\r\n opacity: 1 !important;\r\n}\r\n#top-menu li a:hover:before {\r\n right: 0;\r\n}\r\n#top-menu li li a:before {\r\n bottom: 10%;\r\n}", "Divi-child", "", "inherit", "closed", "closed", "", "16-revision-v1", "", "", "2018-06-11 00:29:30", "2018-06-11 00:29:30", "", "16", "https://beyondink.alluredigitalmarketing.com.au/16-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("734", "1", "2018-06-11 00:30:20", "2018-06-11 00:30:20", "#top-menu .current-menu-item a::before,\r\n#top-menu .current_page_item a::before {\r\n content: \"\";\r\n position: absolute;\r\n z-index: 2;\r\n left: 0;\r\n right: 0;\r\n}\r\n#top-menu li a:before {\r\n content: \"\";\r\n position: absolute;\r\n z-index: -2;\r\n left: 0;\r\n right: 100%;\r\n bottom: 50%;\r\n background: #9dd00f; /*** COLOR OF THE LINE ***/\r\n height: 3px; /*** THICKNESS OF THE LINE ***/\r\n -webkit-transition-property: right;\r\n transition-property: right;\r\n -webkit-transition-duration: 0.3s;\r\n transition-duration: 0.3s;\r\n -webkit-transition-timing-function: ease-out;\r\n transition-timing-function: ease-out;\r\n}\r\n#top-menu li a:hover {\r\n opacity: 1 !important;\r\n}\r\n#top-menu li a:hover:before {\r\n right: 0;\r\n}\r\n#top-menu li li a:before {\r\n bottom: 10%;\r\n}", "Divi-child", "", "inherit", "closed", "closed", "", "16-revision-v1", "", "", "2018-06-11 00:30:20", "2018-06-11 00:30:20", "", "16", "https://beyondink.alluredigitalmarketing.com.au/16-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("745", "1", "2018-06-11 00:52:36", "2018-06-11 00:52:36", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" background_position_2=\"center\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/contact/\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]<p>As a boutique design and construction company, we\'re big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"21px||0|\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"6\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\" use_custom_width=\"on\" custom_width_px=\"2188px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2><strong>Commercial Projects. New Homes. Additions.</strong></h2>\n<h3><span style=\"color: #000000;\"><strong>Insightful design. Exemplary construction.</strong></span></h3>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Interior Design<br /> • Landcape Design</p>\n<p>A boutique residential & commercial design & construction company.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Commercial<br /> • Residential</p>\n<p>We\'re passionate about innovation to create the best possible space.</p>\n<p> </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Town Planning<br /> • Cost Control</p>\n<p>We\'re committed to quality and value for money, delivering on time and on budget.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Bridgewater-House.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Work\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]<p>Commercial Projects. New Homes. Additions.</p>\n<p>Our commercial portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"]<p><em><span style=\"color: #ffffff;\">We promise not to spam!</span></em></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-06-11 00:52:36", "2018-06-11 00:52:36", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("736", "1", "2018-06-11 00:40:00", "2018-06-11 00:40:00", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" background_position_2=\"center\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"#top\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]<p>Commercial Projects. New Homes. Additions. Our commercial portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"21px||0|\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" contenteditable=\"true\" data-shortcode-id=\"1.0.0.0-1515376821367\">Insightful design and exemplary construction</h2>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Interior Design<br /> • Landcape Design</p>\n<p>A boutique residential & commercial design & construction company.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Commercial<br /> • Residential</p>\n<p>We\'re passionate about innovation to create the best possible space.</p>\n<p> </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Town Planning<br /> • Cost Control</p>\n<p>We\'re committed to quality and value for money, delivering on time and on budget.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Bridgewater-House.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Work\" button_url=\"#top\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]Lorem ipsum dolor sit amet, consectetur adipiscing 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.\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"]<p><em><span style=\"color: #ffffff;\">We promise not to spam!</span></em></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-06-11 00:40:00", "2018-06-11 00:40:00", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("740", "1", "2018-06-11 00:44:21", "2018-06-11 00:44:21", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" background_position_2=\"center\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/contact/\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]<p>As a boutique design and construction company, we\'re big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"21px||0|\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<p>Insightful design and exemplary construction</p>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Interior Design<br /> • Landcape Design</p>\n<p>A boutique residential & commercial design & construction company.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Commercial<br /> • Residential</p>\n<p>We\'re passionate about innovation to create the best possible space.</p>\n<p> </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Town Planning<br /> • Cost Control</p>\n<p>We\'re committed to quality and value for money, delivering on time and on budget.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Bridgewater-House.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Work\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]<p>Commercial Projects. New Homes. Additions.</p>\n<p>Our commercial portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"]<p><em><span style=\"color: #ffffff;\">We promise not to spam!</span></em></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-06-11 00:44:21", "2018-06-11 00:44:21", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("738", "1", "2018-06-11 00:40:43", "2018-06-11 00:40:43", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" background_position_2=\"center\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"Our Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]<p>Commercial Projects. New Homes. Additions. Our commercial portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"21px||0|\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2 class=\"et_pb_module_header et-fb-editable-element et-fb-editable-element__editing\" contenteditable=\"true\" data-shortcode-id=\"1.0.0.0-1515376821367\">Insightful design and exemplary construction</h2>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Interior Design<br /> • Landcape Design</p>\n<p>A boutique residential & commercial design & construction company.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Commercial<br /> • Residential</p>\n<p>We\'re passionate about innovation to create the best possible space.</p>\n<p> </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Town Planning<br /> • Cost Control</p>\n<p>We\'re committed to quality and value for money, delivering on time and on budget.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Bridgewater-House.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Work\" button_url=\"#top\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]Lorem ipsum dolor sit amet, consectetur adipiscing 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.\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"]<p><em><span style=\"color: #ffffff;\">We promise not to spam!</span></em></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-06-11 00:40:43", "2018-06-11 00:40:43", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("795", "1", "2018-06-11 04:43:26", "2018-06-11 04:43:26", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" background_position_2=\"center\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/contact/\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]<p>As a boutique design and construction company, we\'re big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"21px||0|\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"2188px\" use_custom_gutter=\"on\" gutter_width=\"6\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2><strong>Commercial Projects. New Homes. Additions.</strong></h2>\n<h3><span style=\"color: #000000;\"><strong>Insightful design. Exemplary construction.</strong></span></h3>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Interior Design<br /> • Landcape Design</p>\n<p>A boutique residential & commercial design & construction company.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Commercial<br /> • Residential</p>\n<p>We\'re passionate about innovation to create the best possible space.</p>\n<p> </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Town Planning<br /> • Cost Control</p>\n<p>We\'re committed to quality and value for money, delivering on time and on budget.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0|0px|0|0px\" custom_margin=\"|||\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Bridgewater-House.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"40px|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]<p>Our commercial portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]<p>Sign up to keep up to date with what\'s happening at Beyond Ink.</p>[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"]<p><em><span style=\"color: #ffffff;\">We promise not to spam!</span></em></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-06-11 04:43:26", "2018-06-11 04:43:26", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("742", "1", "2018-06-11 00:47:54", "2018-06-11 00:47:54", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" background_position_2=\"center\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/contact/\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]<p>As a boutique design and construction company, we\'re big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"21px||0|\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"6\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\" use_custom_width=\"on\" custom_width_px=\"2188px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2><strong>Commercial Projects. New Homes. Additions.</strong></h2>\n<h3><strong>Insightful design and exemplary construction.</strong></h3>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Interior Design<br /> • Landcape Design</p>\n<p>A boutique residential & commercial design & construction company.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Commercial<br /> • Residential</p>\n<p>We\'re passionate about innovation to create the best possible space.</p>\n<p> </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Town Planning<br /> • Cost Control</p>\n<p>We\'re committed to quality and value for money, delivering on time and on budget.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Bridgewater-House.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Work\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]<p>Commercial Projects. New Homes. Additions.</p>\n<p>Our commercial portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"]<p><em><span style=\"color: #ffffff;\">We promise not to spam!</span></em></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-06-11 00:47:54", "2018-06-11 00:47:54", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("747", "1", "2018-06-11 00:53:11", "2018-06-11 00:53:11", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" background_position_2=\"center\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/contact/\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]<p>As a boutique design and construction company, we\'re big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"21px||0|\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"6\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\" use_custom_width=\"on\" custom_width_px=\"2188px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2><strong>Commercial Projects. New Homes. Additions.</strong></h2>\n<h3><span style=\"color: #000000;\"><strong>Insightful design. Exemplary construction.</strong></span></h3>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Interior Design<br /> • Landcape Design</p>\n<p>A boutique residential & commercial design & construction company.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Commercial<br /> • Residential</p>\n<p>We\'re passionate about innovation to create the best possible space.</p>\n<p> </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Town Planning<br /> • Cost Control</p>\n<p>We\'re committed to quality and value for money, delivering on time and on budget.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Bridgewater-House.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Work\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]<p>Commercial Projects. New Homes. Additions.</p>\n<p>Our commercial portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]<p>Sign up to keep up to date with what\'s happening at Beyond Ink.</p>[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"]<p><em><span style=\"color: #ffffff;\">We promise not to spam!</span></em></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-06-11 00:53:11", "2018-06-11 00:53:11", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("744", "1", "2018-06-11 00:52:23", "2018-06-11 00:52:23", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" background_position_2=\"center\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/contact/\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]<p>As a boutique design and construction company, we\'re big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"21px||0|\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"6\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\" use_custom_width=\"on\" custom_width_px=\"2188px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2><strong>Commercial Projects. New Homes. Additions.</strong></h2>\n<h3><strong>Insightful design. Exemplary construction.</strong></h3>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Interior Design<br /> • Landcape Design</p>\n<p>A boutique residential & commercial design & construction company.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Commercial<br /> • Residential</p>\n<p>We\'re passionate about innovation to create the best possible space.</p>\n<p> </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Town Planning<br /> • Cost Control</p>\n<p>We\'re committed to quality and value for money, delivering on time and on budget.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Bridgewater-House.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Work\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]<p>Commercial Projects. New Homes. Additions.</p>\n<p>Our commercial portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"]<p><em><span style=\"color: #ffffff;\">We promise not to spam!</span></em></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-06-11 00:52:23", "2018-06-11 00:52:23", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("748", "1", "2018-06-11 00:53:37", "2018-06-11 00:53:37", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" background_position_2=\"center\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/contact/\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]<p>As a boutique design and construction company, we\'re big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"21px||0|\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"6\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\" use_custom_width=\"on\" custom_width_px=\"2188px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2><strong>Commercial Projects. New Homes. Additions.</strong></h2>\n<h3><span style=\"color: #000000;\"><strong>Insightful design. Exemplary construction.</strong></span></h3>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Interior Design<br /> • Landcape Design</p>\n<p>A boutique residential & commercial design & construction company.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Commercial<br /> • Residential</p>\n<p>We\'re passionate about innovation to create the best possible space.</p>\n<p> </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Town Planning<br /> • Cost Control</p>\n<p>We\'re committed to quality and value for money, delivering on time and on budget.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Bridgewater-House.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]<p>Commercial Projects. New Homes. Additions.</p>\n<p>Our commercial portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]<p>Sign up to keep up to date with what\'s happening at Beyond Ink.</p>[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"]<p><em><span style=\"color: #ffffff;\">We promise not to spam!</span></em></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-06-11 00:53:37", "2018-06-11 00:53:37", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("763", "1", "2018-07-19 09:06:17", "2018-07-19 09:06:17", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Beyond Ink Blog</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"2_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_blog posts_number=\"10\" show_more=\"on\" show_author=\"off\" show_categories=\"off\" offset_number=\"0\" _builder_version=\"3.0.106\"][/et_pb_blog][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_sidebar area=\"sidebar-1\" _builder_version=\"3.0.106\"][/et_pb_sidebar][/et_pb_column][/et_pb_row][/et_pb_section]", "Test Page", "", "publish", "closed", "closed", "", "test-page", "", "", "2018-07-19 09:17:15", "2018-07-19 09:17:15", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=763", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("764", "1", "2018-06-11 03:35:13", "2018-06-11 03:35:13", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Racing at Gifford Hill - Murray Bridge Racing Club</h1>\n<p><span style=\"color: #ffffff;\"></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|0|0px\"][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.106\"]<h1 style=\"text-align: center;\">We\'re proud to be responsible for the redesign and project management of the new $20 million state-of-the-art Murray Bridge Racing Club at Gifford Hill.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/North-East-Corner-Dulux-Gunmetal-Kinetic-800x254.jpg\" align=\"center\" _builder_version=\"3.0.106\" custom_margin=\"25px|||\"][/et_pb_image][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.106\" max_width_last_edited=\"on|desktop\" max_width=\"47%\" text_font=\"||||||||\" module_alignment=\"center\"]<p style=\"text-align: center;\"><span>A world-class facility with function centre, food and beverage outlets, and raceday facilities, this exciting racetrack development - located just an hour\'s drive from Adelaide - is set to open early 2019.</span></p>\n[/et_pb_text][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" align=\"center\" _builder_version=\"3.0.106\" custom_margin=\"25px|||\"][/et_pb_image][et_pb_gallery gallery_ids=\"144,200,726,727\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" custom_margin=\"25px|||\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Racing at Gifford Hill - Murray Bridge Racing Club", "", "inherit", "closed", "closed", "", "718-revision-v1", "", "", "2018-06-11 03:35:13", "2018-06-11 03:35:13", "", "718", "https://beyondink.alluredigitalmarketing.com.au/718-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("766", "1", "2018-06-11 03:37:16", "2018-06-11 03:37:16", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Racing at Gifford Hill - Murray Bridge Racing Club</h1>\n<p><span style=\"color: #ffffff;\"></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"30px|0px|0|0px\"][et_pb_row _builder_version=\"3.0.106\" custom_padding=\"12px|0px|10px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.106\"]<h1 style=\"text-align: center;\">We\'re proud to be responsible for the redesign and project management of the new $20 million state-of-the-art Murray Bridge Racing Club at Gifford Hill.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/North-East-Corner-Dulux-Gunmetal-Kinetic-800x254.jpg\" align=\"center\" _builder_version=\"3.0.106\" custom_margin=\"25px|||\"][/et_pb_image][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.106\" max_width_last_edited=\"on|desktop\" max_width=\"47%\" text_font=\"||||||||\" module_alignment=\"center\"]<p style=\"text-align: center;\"><span>Set to open early 2019, this world-class racetrack development, with function centre, food and beverage outlets, and raceday facilities, is located just an hour\'s drive from Adelaide.</span></p>[/et_pb_text][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" align=\"center\" _builder_version=\"3.0.106\" custom_margin=\"25px|||\"][/et_pb_image][et_pb_gallery gallery_ids=\"144,200,726,727\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" custom_margin=\"25px|||\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Racing at Gifford Hill - Murray Bridge Racing Club", "", "inherit", "closed", "closed", "", "718-revision-v1", "", "", "2018-06-11 03:37:16", "2018-06-11 03:37:16", "", "718", "https://beyondink.alluredigitalmarketing.com.au/718-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("771", "1", "2018-06-11 03:50:08", "2018-06-11 03:50:08", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/North-East-Corner-Dulux-Gunmetal-Kinetic-800x254.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Coming Soon</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" align=\"center\" _builder_version=\"3.0.106\" url=\"https://beyondink.alluredigitalmarketing.com.au/murray-bridge-racing-club/\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Racing at Gifford Hill - Murray Bridge Racing Club</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Coming Soon", "", "inherit", "closed", "closed", "", "195-revision-v1", "", "", "2018-06-11 03:50:08", "2018-06-11 03:50:08", "", "195", "https://beyondink.alluredigitalmarketing.com.au/195-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("790", "1", "2018-06-11 04:40:27", "2018-06-11 04:40:27", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/North-East-Corner-Dulux-Gunmetal-Kinetic.jpg\" custom_padding=\"0||0|\"][et_pb_row custom_padding=\"27px|0px|88px|0px\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"50px|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Contact Us</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Contact Section\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|100px|0px\"][et_pb_row custom_padding=\"28px|0px|27px|0px\" admin_label=\"Message Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" header_font=\"||||||||\" header_text_color=\"#000000\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"left\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>Send Us A Message</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form email=\"admin@beyondink.com.au\" success_message=\"Your message has been sent!\" form_background_color=\"rgba(26,26,26,0.08)\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.106\" title_font=\"||||||||\" form_field_font=\"Muli|600|||||||\" form_field_font_size=\"16px\" form_field_text_color=\"rgba(0,0,0,0.6)\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#000000\" button_border_width=\"10px\" button_border_color=\"#000000\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.0.92\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact", "", "inherit", "closed", "closed", "", "102-revision-v1", "", "", "2018-06-11 04:40:27", "2018-06-11 04:40:27", "", "102", "https://beyondink.alluredigitalmarketing.com.au/102-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("751", "1", "2018-06-11 00:57:31", "2018-06-11 00:57:31", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#e9f0f6\" background_color_gradient_end=\"rgba(233,240,246,0.2)\" background_color_gradient_end_position=\"44%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/North-East-Corner-Dulux-Gunmetal-Kinetic.jpg\" custom_padding=\"5%||20%|\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Contact Us</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Contact Section\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|100px|0px\"][et_pb_row custom_padding=\"28px|0px|27px|0px\" admin_label=\"Message Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" header_font=\"||||||||\" header_text_color=\"#000000\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"left\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>Send Us A Message</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form form_background_color=\"rgba(26,26,26,0.08)\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.106\" title_font=\"||||||||\" form_field_font=\"Muli|600|||||||\" form_field_font_size=\"16px\" form_field_text_color=\"rgba(0,0,0,0.6)\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#000000\" button_border_width=\"10px\" button_border_color=\"#000000\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" success_message=\"Your message has been sent!\" email=\"admin@beyondink.com.au\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.0.92\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact", "", "inherit", "closed", "closed", "", "102-revision-v1", "", "", "2018-06-11 00:57:31", "2018-06-11 00:57:31", "", "102", "https://beyondink.alluredigitalmarketing.com.au/102-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("755", "1", "2018-06-11 01:01:55", "2018-06-11 01:01:55", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/North-East-Corner-Dulux-Gunmetal-Kinetic-800x254.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Coming Soon</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" _builder_version=\"3.0.106\" align=\"center\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Racing at Gifford Hill - Murray Bridge Racing Club</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Coming Soon", "", "inherit", "closed", "closed", "", "195-revision-v1", "", "", "2018-06-11 01:01:55", "2018-06-11 01:01:55", "", "195", "https://beyondink.alluredigitalmarketing.com.au/195-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("761", "1", "2018-06-11 01:20:08", "2018-06-11 01:20:08", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Racing at Gifford Hill - Murray Bridge Racing Club</h1>\n<p><span style=\"color: #ffffff;\"></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.106\"]<h1 style=\"text-align: center;\">We\'re proud to be responsible for the redesign and project management of the new $20 million state-of-the-art Murray Bridge Racing Club at Gifford Hill.<br /> <span style=\"color: #000000;\"></span></h1>\n<p style=\"text-align: center;\"><span style=\"font-size: 22px;\">A world-class facility with function centre, food and beverage outlets, and raceday facilities, this exciting racetrack development - located just an hour\'s drive from Adelaide - is set to open early 2019.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/North-East-Corner-Dulux-Gunmetal-Kinetic-800x254.jpg\" align=\"center\" _builder_version=\"3.0.106\" custom_margin=\"25px|||\"][/et_pb_image][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" align=\"center\" _builder_version=\"3.0.106\" custom_margin=\"25px|||\"][/et_pb_image][et_pb_gallery gallery_ids=\"144,200,726,727\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" custom_margin=\"25px|||\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Racing at Gifford Hill - Murray Bridge Racing Club", "", "inherit", "closed", "closed", "", "718-revision-v1", "", "", "2018-06-11 01:20:08", "2018-06-11 01:20:08", "", "718", "https://beyondink.alluredigitalmarketing.com.au/718-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("759", "1", "2018-06-11 01:16:58", "2018-06-11 01:16:58", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Racing at Gifford Hill - Murray Bridge Racing Club</h1>\n<p><span style=\"color: #ffffff;\"></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.106\"]<h3 style=\"text-align: center;\"><span style=\"color: #000000;\"></span></h3>\n<p style=\"text-align: center;\"></p>\n<h3 style=\"text-align: center;\"><span style=\"color: #000000;\">We\'re proud to be responsible for the redesign and project management of the new $20 million state-of-the-art Murray Bridge Racing Club at Gifford Hill. </span></h3>\n<p style=\"text-align: center;\"><span style=\"font-size: 22px;\">A world-class facility with function centre, food and beverage outlets, and raceday facilities, this exciting racetrack development - located just an hour\'s drive from Adelaide - is set to open early 2019.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/North-East-Corner-Dulux-Gunmetal-Kinetic-800x254.jpg\" align=\"center\" _builder_version=\"3.0.106\" custom_margin=\"25px|||\"][/et_pb_image][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" align=\"center\" _builder_version=\"3.0.106\" custom_margin=\"25px|||\"][/et_pb_image][et_pb_gallery gallery_ids=\"144,200,726,727\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" custom_margin=\"25px|||\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Racing at Gifford Hill - Murray Bridge Racing Club", "", "inherit", "closed", "closed", "", "718-revision-v1", "", "", "2018-06-11 01:16:58", "2018-06-11 01:16:58", "", "718", "https://beyondink.alluredigitalmarketing.com.au/718-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("757", "1", "2018-06-11 01:12:18", "2018-06-11 01:12:18", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Racing at Gifford Hill - Murray Bridge Racing Club</h1>\n<p><span style=\"color: #ffffff;\"></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.106\"]<h3 style=\"text-align: center;\"><span style=\"color: #000000;\"></span></h3>\n<p style=\"text-align: center;\"></p>\n<h3 style=\"text-align: center;\"><span style=\"color: #000000;\">We\'re proud to be responsible for the redesign and project management of the new state-of-the-art Murray Bridge Racing Club at Gifford Hill. </span></h3>\n<h3 style=\"text-align: center;\"><span style=\"color: #000000;\">This exciting racetrack redevelopment </span><span style=\"color: #000000;\">is set to open early 2019. </span></h3>\n<p style=\"text-align: center;\"><span style=\"font-size: 22px;\">A world-class facility with function spaces, food and beverage outlets, and 19km racetrack, located just an hour\'s drive from Adelaide.</span></p>\n<p style=\"text-align: center;\"></p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/North-East-Corner-Dulux-Gunmetal-Kinetic-800x254.jpg\" align=\"center\" _builder_version=\"3.0.106\" custom_margin=\"25px|||\"][/et_pb_image][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" align=\"center\" _builder_version=\"3.0.106\" custom_margin=\"25px|||\"][/et_pb_image][et_pb_gallery gallery_ids=\"144,200,726,727\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" custom_margin=\"25px|||\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Racing at Gifford Hill - Murray Bridge Racing Club", "", "inherit", "closed", "closed", "", "718-revision-v1", "", "", "2018-06-11 01:12:18", "2018-06-11 01:12:18", "", "718", "https://beyondink.alluredigitalmarketing.com.au/718-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("770", "1", "2018-06-11 03:49:34", "2018-06-11 03:49:34", "[et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_position=\"top_center\" custom_padding=\"0|0px|100px|0px\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Projects</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_2=\"#f3f3f3\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Front-Entry-Portal-Dulux-Gunmetal-Kinetic-2.jpg\" show_bottom_space=\"off\" _builder_version=\"3.0.106\" custom_padding=\"|||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Commercial\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/\" button_text=\"Discover Commercial Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]<p><span>Our commercial portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#f3f3f3\" background_color_2=\"#f3f3f3\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Residential\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/residential/\" button_text=\"Discover Residential Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_2=\"#f3f3f3\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-2.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Renovations\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/restorations/\" button_text=\"Discover Renovation Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#f3f3f3\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Coming Soon\" button_url=\"#https://beyondink.alluredigitalmarketing.com.au/coming-soon/\" button_text=\"Discover Work In Progress\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/North-East-Corner-Dulux-Gunmetal-Kinetic-Sm.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "Projects", "", "inherit", "closed", "closed", "", "120-revision-v1", "", "", "2018-06-11 03:49:34", "2018-06-11 03:49:34", "", "120", "https://beyondink.alluredigitalmarketing.com.au/120-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("773", "1", "2018-06-11 03:57:03", "2018-06-11 03:57:03", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Our Projects</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_position=\"top_center\" custom_padding=\"0|0px|100px|0px\"][et_pb_row _builder_version=\"3.0.106\" custom_padding=\"0|0px|0|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.106\"][/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_2=\"#f3f3f3\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Front-Entry-Portal-Dulux-Gunmetal-Kinetic-2.jpg\" show_bottom_space=\"off\" _builder_version=\"3.0.106\" custom_padding=\"|||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Commercial Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/\" button_text=\"Discover Commercial Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]<p><span>Our commercial portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#f3f3f3\" background_color_2=\"#f3f3f3\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Residential Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/residential/\" button_text=\"Discover Residential Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_2=\"#f3f3f3\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-2.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Renovations\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/restorations/\" button_text=\"Discover Renovation Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#f3f3f3\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Coming Soon\" button_text=\"Discover Work In Progress\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/coming-soon/\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/North-East-Corner-Dulux-Gunmetal-Kinetic-Sm.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "Projects", "", "inherit", "closed", "closed", "", "120-revision-v1", "", "", "2018-06-11 03:57:03", "2018-06-11 03:57:03", "", "120", "https://beyondink.alluredigitalmarketing.com.au/120-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("778", "1", "2018-06-11 04:05:03", "2018-06-11 04:05:03", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Our Projects</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_position=\"top_center\" custom_padding=\"0|0px|100px|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.106\"][/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"25px|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_2=\"#f3f3f3\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Front-Entry-Portal-Dulux-Gunmetal-Kinetic-2.jpg\" show_bottom_space=\"off\" _builder_version=\"3.0.106\" custom_padding=\"|||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Commercial Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/\" button_text=\"Discover Commercial Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]<p><span>Our commercial portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#f3f3f3\" background_color_2=\"#f3f3f3\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Residential Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/residential/\" button_text=\"Discover Residential Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_2=\"#f3f3f3\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-2.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Renovations\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/restorations/\" button_text=\"Discover Renovation Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#f3f3f3\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Coming Soon\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/coming-soon/\" button_text=\"Discover Work In Progress\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/North-East-Corner-Dulux-Gunmetal-Kinetic-Sm.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "Projects", "", "inherit", "closed", "closed", "", "120-revision-v1", "", "", "2018-06-11 04:05:03", "2018-06-11 04:05:03", "", "120", "https://beyondink.alluredigitalmarketing.com.au/120-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("776", "1", "2018-06-11 03:58:53", "2018-06-11 03:58:53", "[et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" template_type=\"row\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.</p>[/et_pb_text][/et_pb_column][/et_pb_row]", "Page Description", "", "publish", "closed", "closed", "", "page-description", "", "", "2018-06-11 03:58:53", "2018-06-11 03:58:53", "", "0", "https://beyondink.alluredigitalmarketing.com.au/et_pb_layout/page-description/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("777", "1", "2018-06-11 04:04:12", "2018-06-11 04:04:12", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Racing at Gifford Hill - Murray Bridge Racing Club</h1>\n<p><span style=\"color: #ffffff;\"></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"30px|0px|0|0px\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>We\'re proud to be responsible for the redesign and project management of the new $20 million state-of-the-art Murrary Bridge Racing Club at Gifford Hill.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/North-East-Corner-Dulux-Gunmetal-Kinetic-800x254.jpg\" align=\"center\" _builder_version=\"3.0.106\" custom_margin=\"25px|||\"][/et_pb_image][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" align=\"center\" _builder_version=\"3.0.106\" custom_margin=\"||25px|\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>Set to open early 2019, this world-class racetrack development - with function centre, food and beverage outlets, and raceday facilities - is located just an hour\'s drive from Adelaide.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][et_pb_gallery gallery_ids=\"144,200,726,727\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" custom_margin=\"25px|||\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Racing at Gifford Hill - Murray Bridge Racing Club", "", "inherit", "closed", "closed", "", "718-revision-v1", "", "", "2018-06-11 04:04:12", "2018-06-11 04:04:12", "", "718", "https://beyondink.alluredigitalmarketing.com.au/718-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("781", "1", "2018-06-11 04:33:52", "2018-06-11 04:33:52", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.47)\" background_color_gradient_end=\"rgba(233,240,246,0.2)\" background_color_gradient_end_position=\"67%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/lt-1-1P2147-1511431005-rsd-800x533.jpg\" custom_margin=\"|||\" custom_padding=\"10%||9.6%|\"][et_pb_row custom_padding=\"27px|0px|3px|0px\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" admin_label=\"Header Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"About Us\" button_url=\"#top\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"rgba(244,88,63,0)\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#f4583f\" button_border_color_hover=\"rgba(244,88,63,0)\" button_border_radius_hover=\"0px\" animation_style=\"fade\"]<p><span style=\"color: #ffffff;\">We\'re a boutique design and construction company.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Intro Section\" _builder_version=\"3.0.92\" custom_padding=\"56px|0px|60px|0px\"][et_pb_row custom_padding=\"25px|0px|27px|0px\" admin_label=\"Intro Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>Design innovation.<br />Building Excellence.</h2>\n<p>Established in 2006, Beyond Ink specialise in residential and commercial property design and construction.</p>\n<p>Known for our progressive and innovative design, we specialise in major regional projects which add value and vibrancy to communities. And regardless of the size of the project - whether it be a renovation or extension, or a large-scale build; our streamlined budget management system ensures peace of mind for our clients from beginning to end.</p>\n<p>Our recent projects include the design of the Wolf Blass Gallery and Museum in Hahndorf’s Main Street; and the redesign of the new world-class Murray Bridge Racing Club.</p>\n<p>Other past projects include landmark destinations such as The Manna Hotel, The Lane Winery, The Haus Restaurant, and Barker Plaza Shopping Centre.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "closed", "closed", "", "211-revision-v1", "", "", "2018-06-11 04:33:52", "2018-06-11 04:33:52", "", "211", "https://beyondink.alluredigitalmarketing.com.au/211-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("780", "1", "2018-06-11 04:33:41", "2018-06-11 04:33:41", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.47)\" background_color_gradient_end=\"rgba(233,240,246,0.2)\" background_color_gradient_end_position=\"67%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/lt-1-1P2147-1511431005-rsd-800x533.jpg\" custom_margin=\"|||\" custom_padding=\"10%||9.6%|\"][et_pb_row custom_padding=\"27px|0px|3px|0px\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" admin_label=\"Header Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"About Us\" button_url=\"#top\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"rgba(244,88,63,0)\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#f4583f\" button_border_color_hover=\"rgba(244,88,63,0)\" button_border_radius_hover=\"0px\" animation_style=\"fade\"]<p><span style=\"color: #ffffff;\">We\'re a boutique design and construction company.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Intro Section\" _builder_version=\"3.0.92\" custom_padding=\"56px|0px|60px|0px\"][et_pb_row custom_padding=\"25px|0px|27px|0px\" admin_label=\"Intro Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>Design innovation.<br />Building Excellence.</h2>\n<p>Established in 2006, Beyond Ink specialise in residential and commercial property design and construction.</p>\n<p>Known for our progressive and innovative design, we specialise in major regional projects which add value and vibrancy to communities. And regardless of the size of the project - whether it be a renovation or extension, or a large-scale build; our streamlined budget management system ensures peace of mind for our clients from beginning to end.</p>\n<p>Our recent projects include the design of the Wolf Blass Gallery and Museum in Hahndorf’s Main Street; and the redesign of the new world-class Murray Bridge Racing Club.</p>\n<p>Other past projects include landmark destinations such as The Manna Hotel, The Lane Winery, The Haus Restaurant, and Barker Plaza Shopping Centre.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Our Story Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" make_equal=\"on\" background_color_1=\"#1a1a1a\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" admin_label=\"Our Story Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#1a1a1a\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_font_size_last_edited=\"on|desktop\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_text_color=\"#ffffff\" header_2_line_height=\"1.4em\" max_width=\"600px\" max_width_phone=\"100%\" max_width_last_edited=\"on|tablet\" module_alignment=\"right\" custom_margin=\"|||\" custom_padding=\"100px|60px|100px|60px\" custom_padding_last_edited=\"off|desktop\"]<h2>Our Story</h2>\r\nMauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero.\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "closed", "closed", "", "211-revision-v1", "", "", "2018-06-11 04:33:41", "2018-06-11 04:33:41", "", "211", "https://beyondink.alluredigitalmarketing.com.au/211-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("784", "1", "2018-06-11 04:35:04", "2018-06-11 04:35:04", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.47)\" background_color_gradient_end=\"rgba(233,240,246,0.2)\" background_color_gradient_end_position=\"67%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/lt-1-1P2147-1511431005-rsd-800x533.jpg\" custom_margin=\"|||\" custom_padding=\"10%||9.6%|\"][et_pb_row custom_padding=\"27px|0px|3px|0px\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" admin_label=\"Header Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"About Us\" button_url=\"#top\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"rgba(244,88,63,0)\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#f4583f\" button_border_color_hover=\"rgba(244,88,63,0)\" button_border_radius_hover=\"0px\" animation_style=\"fade\"]<p><span style=\"color: #ffffff;\">Established in 2006, we specialise in commercial and residential property design and construction.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Intro Section\" _builder_version=\"3.0.92\" custom_padding=\"16px|0px|34px|0px\"][et_pb_row custom_padding=\"25px|0px|5px|0px\" admin_label=\"Intro Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>Design innovation.<br />Building Excellence.</h2>\n<p><span style=\"font-size: 18px;\">Known for our progressive and innovative design, we specialise in major regional projects which add value and vibrancy to communities. And regardless of the size of the project - whether it be a renovation or extension, or a large-scale build; our streamlined budget management system ensures peace of mind for our clients from beginning to end.</span></p>\n<p>Our recent projects include the design of the Wolf Blass Gallery and Museum in Hahndorf’s Main Street; and the redesign of the new world-class Murray Bridge Racing Club.</p>\n<p>Other past projects include landmark destinations such as The Manna Hotel, The Lane Winery, The Haus Restaurant, and Barker Plaza Shopping Centre.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "closed", "closed", "", "211-revision-v1", "", "", "2018-06-11 04:35:04", "2018-06-11 04:35:04", "", "211", "https://beyondink.alluredigitalmarketing.com.au/211-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("783", "1", "2018-06-11 04:34:43", "2018-06-11 04:34:43", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.47)\" background_color_gradient_end=\"rgba(233,240,246,0.2)\" background_color_gradient_end_position=\"67%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/lt-1-1P2147-1511431005-rsd-800x533.jpg\" custom_margin=\"|||\" custom_padding=\"10%||9.6%|\"][et_pb_row custom_padding=\"27px|0px|3px|0px\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" admin_label=\"Header Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"About Us\" button_url=\"#top\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"rgba(244,88,63,0)\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#f4583f\" button_border_color_hover=\"rgba(244,88,63,0)\" button_border_radius_hover=\"0px\" animation_style=\"fade\"]<p><span style=\"color: #ffffff;\">Established in 2006, we specialise in commercial and residential property design and construction.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Intro Section\" _builder_version=\"3.0.92\" custom_padding=\"56px|0px|60px|0px\"][et_pb_row custom_padding=\"25px|0px|27px|0px\" admin_label=\"Intro Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>Design innovation.<br />Building Excellence.</h2>\n<p>Established in 2006, Beyond Ink specialise in residential and commercial property design and construction.</p>\n<p>Known for our progressive and innovative design, we specialise in major regional projects which add value and vibrancy to communities. And regardless of the size of the project - whether it be a renovation or extension, or a large-scale build; our streamlined budget management system ensures peace of mind for our clients from beginning to end.</p>\n<p>Our recent projects include the design of the Wolf Blass Gallery and Museum in Hahndorf’s Main Street; and the redesign of the new world-class Murray Bridge Racing Club.</p>\n<p>Other past projects include landmark destinations such as The Manna Hotel, The Lane Winery, The Haus Restaurant, and Barker Plaza Shopping Centre.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "closed", "closed", "", "211-revision-v1", "", "", "2018-06-11 04:34:43", "2018-06-11 04:34:43", "", "211", "https://beyondink.alluredigitalmarketing.com.au/211-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("787", "1", "2018-06-11 04:38:44", "2018-06-11 04:38:44", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Haus-2.png\" custom_margin=\"|||\" custom_padding=\"0||35px|\"][et_pb_row custom_padding=\"44px|0px|3px|0px\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" admin_label=\"Header Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"About Us\" button_url=\"#top\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"rgba(244,88,63,0)\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#f4583f\" button_border_color_hover=\"rgba(244,88,63,0)\" button_border_radius_hover=\"0px\" animation_style=\"fade\"]<p><span style=\"color: #ffffff;\">Established in 2006, we specialise in commercial and residential property design and construction.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Intro Section\" _builder_version=\"3.0.92\" custom_padding=\"16px|0px|34px|0px\"][et_pb_row custom_padding=\"25px|0px|5px|0px\" admin_label=\"Intro Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>Design innovation.<br />Building Excellence.</h2>\n<p><span style=\"font-size: 18px;\">Known for our progressive and innovative design, we specialise in major regional projects which add value and vibrancy to communities. And regardless of the size of the project - whether it be a renovation or extension, or a large-scale build; our streamlined budget management system ensures peace of mind for our clients from beginning to end.</span></p>\n<p>Our recent projects include the design of the Wolf Blass Gallery and Museum in Hahndorf’s Main Street; and the redesign of the new world-class Murray Bridge Racing Club.</p>\n<p>Other past projects include landmark destinations such as The Manna Hotel, The Lane Winery, The Haus Restaurant, and Barker Plaza Shopping Centre.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "closed", "closed", "", "211-revision-v1", "", "", "2018-06-11 04:38:44", "2018-06-11 04:38:44", "", "211", "https://beyondink.alluredigitalmarketing.com.au/211-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("789", "1", "2018-06-11 04:40:13", "2018-06-11 04:40:13", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#e9f0f6\" background_color_gradient_end=\"rgba(233,240,246,0.2)\" background_color_gradient_end_position=\"44%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/North-East-Corner-Dulux-Gunmetal-Kinetic.jpg\" custom_padding=\"0||0|\"][et_pb_row custom_padding=\"27px|0px|88px|0px\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"50px|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Contact Us</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Contact Section\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|100px|0px\"][et_pb_row custom_padding=\"28px|0px|27px|0px\" admin_label=\"Message Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" header_font=\"||||||||\" header_text_color=\"#000000\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"left\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>Send Us A Message</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form email=\"admin@beyondink.com.au\" success_message=\"Your message has been sent!\" form_background_color=\"rgba(26,26,26,0.08)\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.106\" title_font=\"||||||||\" form_field_font=\"Muli|600|||||||\" form_field_font_size=\"16px\" form_field_text_color=\"rgba(0,0,0,0.6)\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#000000\" button_border_width=\"10px\" button_border_color=\"#000000\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.0.92\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact", "", "inherit", "closed", "closed", "", "102-revision-v1", "", "", "2018-06-11 04:40:13", "2018-06-11 04:40:13", "", "102", "https://beyondink.alluredigitalmarketing.com.au/102-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("797", "1", "2018-06-11 04:47:00", "2018-06-11 04:47:00", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" background_position_2=\"center\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/contact/\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]<p>As a boutique design and construction company, we\'re big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"21px||0|\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"2188px\" use_custom_gutter=\"on\" gutter_width=\"6\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2><strong>Commercial Projects. New Homes. Additions.</strong></h2>\n<h3><span style=\"color: #000000;\"><strong>Insightful design. Exemplary construction.</strong></span></h3>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Interior Design<br /> • Landcape Design</p>\n<p>A boutique residential & commercial design & construction company.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Commercial<br /> • Residential</p>\n<p>We\'re passionate about innovation to create the best possible space.</p>\n<p> </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Town Planning<br /> • Cost Control</p>\n<p>We\'re committed to quality and value for money, delivering on time and on budget.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0|0px|0|0px\" custom_margin=\"||50px|\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Bridgewater-House.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"40px|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]<p>Our commercial portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0|0px|0px|0px\" custom_margin=\"-50px||-50px|\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]<p>Sign up to keep up to date with what\'s happening at Beyond Ink.</p>[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"]<p><em><span style=\"color: #ffffff;\">We promise not to spam!</span></em></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-06-11 04:47:00", "2018-06-11 04:47:00", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("793", "1", "2018-06-11 04:42:10", "2018-06-11 04:42:10", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Haus-2.png\" custom_margin=\"|||\" custom_padding=\"0||35px|\"][et_pb_row custom_padding=\"44px|0px|3px|0px\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" admin_label=\"Header Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.93\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"About Us\" button_url=\"#top\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"800px\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"rgba(244,88,63,0)\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#f4583f\" button_border_color_hover=\"rgba(244,88,63,0)\" button_border_radius_hover=\"0px\" animation_style=\"fade\"]<p><span style=\"color: #ffffff;\">We specialise in commercial and residential property design and construction.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Intro Section\" _builder_version=\"3.0.92\" custom_padding=\"16px|0px|34px|0px\"][et_pb_row custom_padding=\"25px|0px|5px|0px\" admin_label=\"Intro Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>Design innovation.<br />Building Excellence.</h2>\n<p><span style=\"font-size: 18px;\">Established in 2006 by owner John Ashcroft, we\'re known for our progressive and innovative design. We specialise in major regional projects which add value and vibrancy to communities. </span></p>\n<p><span style=\"font-size: 18px;\">Regardless of the size of the project - whether it be a renovation or extension, or a large-scale build; our streamlined budget management system ensures peace of mind for our clients from beginning to end.</span></p>\n<p>Our recent projects include the design of the Wolf Blass Gallery and Museum in Hahndorf’s Main Street; and the redesign of the new world-class Murray Bridge Racing Club.</p>\n<p>Other past projects include landmark destinations such as The Manna Hotel, The Lane Winery, The Haus Restaurant, and Barker Plaza Shopping Centre.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "closed", "closed", "", "211-revision-v1", "", "", "2018-06-11 04:42:10", "2018-06-11 04:42:10", "", "211", "https://beyondink.alluredigitalmarketing.com.au/211-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("798", "1", "2018-06-11 04:48:03", "2018-06-11 04:48:03", "#top-menu .current-menu-item a::before,\r\n#top-menu .current_page_item a::before {\r\n content: \"\";\r\n position: absolute;\r\n z-index: 2;\r\n left: 0;\r\n right: 0;\r\n}\r\n#top-menu li a:before {\r\n content: \"\";\r\n position: absolute;\r\n z-index: -2;\r\n left: 0;\r\n right: 100%;\r\n bottom: 50%;\r\n background: #9dd00f; /*** COLOR OF THE LINE ***/\r\n height: 1px; /*** THICKNESS OF THE LINE ***/\r\n -webkit-transition-property: right;\r\n transition-property: right;\r\n -webkit-transition-duration: 0.3s;\r\n transition-duration: 0.3s;\r\n -webkit-transition-timing-function: ease-out;\r\n transition-timing-function: ease-out;\r\n}\r\n#top-menu li a:hover {\r\n opacity: 1 !important;\r\n}\r\n#top-menu li a:hover:before {\r\n right: 0;\r\n}\r\n#top-menu li li a:before {\r\n bottom: 10%;\r\n}", "Divi-child", "", "inherit", "closed", "closed", "", "16-revision-v1", "", "", "2018-06-11 04:48:03", "2018-06-11 04:48:03", "", "16", "https://beyondink.alluredigitalmarketing.com.au/16-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("806", "1", "2018-06-11 05:07:46", "2018-06-11 05:07:46", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/North-East-Corner-Dulux-Gunmetal-Kinetic.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Commercial Projects</h1>\n<p><span style=\"color: #ffffff;\">We specialise in major regional developments.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"50px|0px|27px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Lane-Winery.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-lane-vineyard/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Lane Winery</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Barker-Plaza-Entrance-800x534.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/barker-plaza/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Barker Plaza Shopping Centre</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Hahndorf.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-haus-cafebarkitchen/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Haus Cafe+Bar+Kitchen</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Studio-Apartments.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-manna-apartments-2/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Haus Studio Apartments</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/K1-Winery-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/k1-winery/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">K1 Winery</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/55708_165645590125507_7049646_o.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-manna-motel-of-hahndorf/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Manna Motel of Hahndorf</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Inavogue-Showroom-2-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/inavogue-showroom/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Inavogue Showroom</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Pulteney-Plaza-Apartments-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/pulteney-plaza-adelaide/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Pulteney Plaza Apartments</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Rivercorp-Monarto-Apple-Processing-Plant.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/rivercorp-monarto-apple-processing-facility/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Rivercorp Monarto Apple Processing Facility</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Elders-Strathalbyn-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/elders-strathalbyn/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Elders Strathalbyn</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Commercial", "", "inherit", "closed", "closed", "", "175-revision-v1", "", "", "2018-06-11 05:07:46", "2018-06-11 05:07:46", "", "175", "https://beyondink.alluredigitalmarketing.com.au/175-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("802", "1", "2018-06-11 05:05:48", "2018-06-11 05:05:48", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Our Projects</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_position=\"top_center\" custom_padding=\"0|0px|26px|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.106\"][/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"25px|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>Our projects range from major regional developments, to grand home designs. You can feel at ease with our beginning-to-end design, construction, and project management expertise.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_2=\"#f3f3f3\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Front-Entry-Portal-Dulux-Gunmetal-Kinetic-2.jpg\" show_bottom_space=\"off\" _builder_version=\"3.0.106\" custom_padding=\"|||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Commercial Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/\" button_text=\"Discover Commercial Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]<p><span>Our commercial portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#f3f3f3\" background_color_2=\"#f3f3f3\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Residential Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/residential/\" button_text=\"Discover Residential Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]<p>As residential builders in Adelaide, we\'ve designed and built dozens of beautiful homes in South Australia. With our expertise and exemplary construction experience, we can build you a dream home beyond your expectations.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_2=\"#f3f3f3\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-2.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Renovations\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/restorations/\" button_text=\"Discover Renovation Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]<p>No home renovation is too difficult for our team. We can completely transform your existing home to your ideal specifications, whilst ensuring your project is on time and on budget.</p>[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#f3f3f3\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Coming Soon\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/coming-soon/\" button_text=\"Discover Work In Progress\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]<p>Our team is always working on a number of commercial and residential projects. Find out some of them here. </p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/North-East-Corner-Dulux-Gunmetal-Kinetic-Sm.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "Projects", "", "inherit", "closed", "closed", "", "120-revision-v1", "", "", "2018-06-11 05:05:48", "2018-06-11 05:05:48", "", "120", "https://beyondink.alluredigitalmarketing.com.au/120-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("800", "1", "2018-06-11 04:54:51", "2018-06-11 04:54:51", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Our Projects</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_position=\"top_center\" custom_padding=\"0|0px|26px|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.106\"][/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"25px|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_2=\"#f3f3f3\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Front-Entry-Portal-Dulux-Gunmetal-Kinetic-2.jpg\" show_bottom_space=\"off\" _builder_version=\"3.0.106\" custom_padding=\"|||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Commercial Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/\" button_text=\"Discover Commercial Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]<p><span>Our commercial portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#f3f3f3\" background_color_2=\"#f3f3f3\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Residential Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/residential/\" button_text=\"Discover Residential Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]<p>As residential builders in Adelaide, we\'ve designed and built dozens of beautiful homes in South Australia. With our expertise and exemplary construction experience, we can build you a dream home beyond your expectations.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_2=\"#f3f3f3\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-2.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Renovations\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/restorations/\" button_text=\"Discover Renovation Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]<p>No home renovation is too difficult for our team. We can completely transform your existing home to your ideal specifications, whilst ensuring your project is on time and on budget.</p>[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#f3f3f3\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Coming Soon\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/coming-soon/\" button_text=\"Discover Work In Progress\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. Etiam elit elit, elementum sed varius at, adipiscing vitae est.Mauris accumsan eros eget libero. [/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/North-East-Corner-Dulux-Gunmetal-Kinetic-Sm.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "Projects", "", "inherit", "closed", "closed", "", "120-revision-v1", "", "", "2018-06-11 04:54:51", "2018-06-11 04:54:51", "", "120", "https://beyondink.alluredigitalmarketing.com.au/120-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("805", "1", "2018-06-11 05:07:40", "2018-06-11 05:07:40", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/North-East-Corner-Dulux-Gunmetal-Kinetic.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Commercial Projects</h1>\n<p><span style=\"color: #ffffff;\">We specialise in majore regional developments.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"50px|0px|27px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Lane-Winery.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-lane-vineyard/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Lane Winery</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Barker-Plaza-Entrance-800x534.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/barker-plaza/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Barker Plaza Shopping Centre</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Hahndorf.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-haus-cafebarkitchen/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Haus Cafe+Bar+Kitchen</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Studio-Apartments.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-manna-apartments-2/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Haus Studio Apartments</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/K1-Winery-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/k1-winery/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">K1 Winery</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/55708_165645590125507_7049646_o.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-manna-motel-of-hahndorf/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Manna Motel of Hahndorf</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Inavogue-Showroom-2-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/inavogue-showroom/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Inavogue Showroom</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Pulteney-Plaza-Apartments-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/pulteney-plaza-adelaide/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Pulteney Plaza Apartments</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Rivercorp-Monarto-Apple-Processing-Plant.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/rivercorp-monarto-apple-processing-facility/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Rivercorp Monarto Apple Processing Facility</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Elders-Strathalbyn-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/elders-strathalbyn/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Elders Strathalbyn</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Commercial", "", "inherit", "closed", "closed", "", "175-revision-v1", "", "", "2018-06-11 05:07:40", "2018-06-11 05:07:40", "", "175", "https://beyondink.alluredigitalmarketing.com.au/175-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("804", "1", "2018-06-11 05:06:18", "2018-06-11 05:06:18", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Our Projects</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_position=\"top_center\" custom_padding=\"0|0px|26px|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.106\"][/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"25px|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>Our projects range from major regional developments, to grand home designs. You can feel at ease with our beginning-to-end design, construction, and project management expertise.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_2=\"#f3f3f3\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Front-Entry-Portal-Dulux-Gunmetal-Kinetic-2.jpg\" show_bottom_space=\"off\" _builder_version=\"3.0.106\" custom_padding=\"|||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Commercial Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/\" button_text=\"Discover Commercial Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]<p><span>Our commercial portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#f3f3f3\" background_color_2=\"#f3f3f3\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Residential Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/residential/\" button_text=\"Discover Residential Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]<p>As residential builders in Adelaide, we\'ve designed and built dozens of beautiful homes in South Australia. With our expertise and exemplary construction experience, we can build you a dream home beyond your expectations.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_2=\"#f3f3f3\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-2.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Renovations\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/restorations/\" button_text=\"Discover Renovation Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]<p>No home renovation is too difficult for our team. We can completely transform your existing home to your ideal specifications, whilst ensuring your project is on time and on budget.</p>[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#f3f3f3\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Coming Soon\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/coming-soon/\" button_text=\"Discover Work In Progress\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]<p>Our team is always working on a number of commercial and residential projects in South Australia and beyond.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/North-East-Corner-Dulux-Gunmetal-Kinetic-Sm.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "Projects", "", "inherit", "closed", "closed", "", "120-revision-v1", "", "", "2018-06-11 05:06:18", "2018-06-11 05:06:18", "", "120", "https://beyondink.alluredigitalmarketing.com.au/120-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1236", "1", "2018-07-23 10:48:05", "2018-07-23 10:48:05", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"194deg\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/IMG_6211-1280x853.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1143px\" custom_padding=\"0|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Residential Projects</h1>\r\n<span style=\"color: #ffffff;\">Designing and building beautiful homes in the Adelaide Hills area since 2006.</span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"41px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Bell-Crt-4-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/adelaide-hills-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<span style=\"font-size: 18px;\">Adelaide Hills Residence </span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/aldgate-renovation/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<span style=\"font-size: 18px;\">Aldgate Renovation </span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Battunga-Residence.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/battunga-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<span style=\"font-size: 18px;\">Battunga Residence</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6211-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/bridgewater-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<span style=\"font-size: 18px;\">Bridgewater Residence</span>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"1px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/6.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/bridgewater-rammed-earth-renovation/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<span style=\"font-size: 18px;\">Bridgewater Rammed Earth Renovation</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/The-Latch-Atkinson-Rd-Crafers-West-5-800x532.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/crafers-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<span style=\"font-size: 18px;\">Crafers Residence</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Echunga-Residence.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/echunga-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<span style=\"font-size: 18px;\">Echunga Residence</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Jupiter-Creek-Residence.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/jupiter-creek-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<span style=\"font-size: 18px;\">Jupiter Creek Residence</span>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence-6.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/kensington-gardens/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<span style=\"font-size: 18px;\">Kensington Gardens Residence</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/IMG_0623-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/littlehampton-renovation-additions/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<span style=\"font-size: 18px;\">Littlehampton Renovation and Additions</span><span style=\"font-size: 18px;\"> </span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/14-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/totness-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<span style=\"font-size: 18px;\">Totness Residence</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Residential", "", "inherit", "closed", "closed", "", "152-revision-v1", "", "", "2018-07-23 10:48:05", "2018-07-23 10:48:05", "", "152", "https://beyondink.alluredigitalmarketing.com.au/152-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("815", "1", "2018-06-11 07:05:05", "2018-06-11 07:05:05", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Exterior-3-of-6-800x535.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Residential Projects</h1>\n<p><span style=\"color: #ffffff;\">Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"50px|0px|27px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Bell-Crt-4-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/adelaide-hills-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Adelaide Hills Residence </span></p>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/aldgate-renovation/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Aldgate Renovation </span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Battunga-Residence.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/battunga-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Battunga Residence</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6211-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/bridgewater-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Bridgewater Residence</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/6.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/bridgewater-rammed-earth-renovation/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Bridgewater Rammed Earth Renovation</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/The-Latch-Atkinson-Rd-Crafers-West-5-800x532.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/crafers-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Crafers Residence</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Echunga-Residence.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/echunga-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Echunga Residence</span></p>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Jupiter-Creek-Residence.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/jupiter-creek-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Jupiter Creek Residence</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence-6.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/kensington-gardens/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Kensington Gardens Residence</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/IMG_0623-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/littlehampton-renovation-additions/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Littlehampton Renovation and Additions</span><span style=\"font-size: 18px;\"> </span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/14-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/totness-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Totness Residence</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Residential", "", "inherit", "closed", "closed", "", "152-revision-v1", "", "", "2018-06-11 07:05:05", "2018-06-11 07:05:05", "", "152", "https://beyondink.alluredigitalmarketing.com.au/152-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("808", "1", "2018-06-11 05:10:40", "2018-06-11 05:10:40", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/North-East-Corner-Dulux-Gunmetal-Kinetic.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Commercial Projects</h1>\n<p><span style=\"color: #ffffff;\">We specialise in major regional developments - from design and construction to entire management of your project.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"50px|0px|27px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Lane-Winery.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-lane-vineyard/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Lane Winery</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Barker-Plaza-Entrance-800x534.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/barker-plaza/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Barker Plaza Shopping Centre</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Hahndorf.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-haus-cafebarkitchen/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Haus Cafe+Bar+Kitchen</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Studio-Apartments.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-manna-apartments-2/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Haus Studio Apartments</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/K1-Winery-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/k1-winery/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">K1 Winery</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/55708_165645590125507_7049646_o.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-manna-motel-of-hahndorf/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The Manna Motel of Hahndorf</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Inavogue-Showroom-2-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/inavogue-showroom/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Inavogue Showroom</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Pulteney-Plaza-Apartments-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/pulteney-plaza-adelaide/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Pulteney Plaza Apartments</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Rivercorp-Monarto-Apple-Processing-Plant.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/rivercorp-monarto-apple-processing-facility/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Rivercorp Monarto Apple Processing Facility</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Elders-Strathalbyn-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/elders-strathalbyn/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">Elders Strathalbyn</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Commercial", "", "inherit", "closed", "closed", "", "175-revision-v1", "", "", "2018-06-11 05:10:40", "2018-06-11 05:10:40", "", "175", "https://beyondink.alluredigitalmarketing.com.au/175-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("811", "1", "2018-06-11 05:12:40", "2018-06-11 05:12:40", "[et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" template_type=\"module\"]<h2>Design innovation.<br />Building Excellence.</h2>\n<p><span style=\"font-size: 18px;\">Established in 2006 by owner John Ashcroft, we\'re known for our progressive and innovative design. We specialise in major regional projects which add value and vibrancy to communities. </span></p>\n<p><span style=\"font-size: 18px;\">Regardless of the size of the project - whether it be a renovation or extension, or a large-scale build; our streamlined budget management system ensures peace of mind for our clients from beginning to end.</span></p>\n<p>Our recent projects include the design of the Wolf Blass Gallery and Museum in Hahndorf’s Main Street; and the redesign of the new world-class Murray Bridge Racing Club.</p>\n<p>Other past projects include landmark destinations such as The Manna Hotel, The Lane Winery, The Haus Restaurant, and Barker Plaza Shopping Centre.</p>[/et_pb_text]", "Font", "", "publish", "closed", "closed", "", "font", "", "", "2018-06-11 05:12:40", "2018-06-11 05:12:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/et_pb_layout/font/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("1076", "1", "2018-07-18 11:17:59", "2018-07-18 11:17:59", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"194deg\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705-e1525939024788.jpg\" custom_padding=\"9.8%|0px|123px|0px\" next_background_color=\"#000000\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"0|0px|11px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Commercial Projects</h1>\r\n<span style=\"color: #ffffff;\">We specialise in major regional developments - from design and construction to entire management of your project.</span> [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\" prev_background_color=\"#000000\"][et_pb_row custom_padding=\"50px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Lane-Winery.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-lane-vineyard/\" _builder_version=\"3.0.106\" /][et_pb_text admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">The Lane Winery</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Barker-Plaza-Entrance-800x534.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/barker-plaza/\" _builder_version=\"3.0.106\" /][et_pb_text admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">Barker Plaza Shopping Centre</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Hahndorf.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-haus-cafebarkitchen/\" _builder_version=\"3.0.106\" /][et_pb_text admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">The Haus Cafe+Bar+Kitchen</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Studio-Apartments.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-manna-apartments-2/\" _builder_version=\"3.0.106\" /][et_pb_text admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">The Haus Studio Apartments</span> [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/K1-Winery-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/k1-winery/\" _builder_version=\"3.0.106\" /][et_pb_text admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">K1 Winery</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/55708_165645590125507_7049646_o.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-manna-motel-of-hahndorf/\" _builder_version=\"3.0.106\" /][et_pb_text admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">The Manna Motel of Hahndorf</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Inavogue-Showroom-2-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/inavogue-showroom/\" _builder_version=\"3.0.106\" /][et_pb_text admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">Inavogue Showroom</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Pulteney-Plaza-Apartments-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/pulteney-plaza-adelaide/\" _builder_version=\"3.0.106\" /][et_pb_text admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">Pulteney Plaza Apartments</span> [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|27px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Rivercorp-Monarto-Apple-Processing-Plant.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/rivercorp-monarto-apple-processing-facility/\" _builder_version=\"3.0.106\" /][et_pb_text admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">Rivercorp Monarto Apple Processing Facility</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Elders-Strathalbyn-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/elders-strathalbyn/\" _builder_version=\"3.0.106\" /][et_pb_text admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">Elders Strathalbyn</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Commercial", "", "inherit", "closed", "closed", "", "175-revision-v1", "", "", "2018-07-18 11:17:59", "2018-07-18 11:17:59", "", "175", "https://beyondink.alluredigitalmarketing.com.au/175-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("812", "1", "2018-06-11 05:16:16", "2018-06-11 05:16:16", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/North-East-Corner-Dulux-Gunmetal-Kinetic.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Commercial Projects</h1>\n<p><span style=\"color: #ffffff;\">We specialise in major regional developments - from design and construction to entire management of your project.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"50px|0px|27px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Lane-Winery.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-lane-vineyard/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">The Lane Winery</span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Barker-Plaza-Entrance-800x534.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/barker-plaza/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Barker Plaza Shopping Centre</span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Hahndorf.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-haus-cafebarkitchen/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">The Haus Cafe+Bar+Kitchen</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Studio-Apartments.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-manna-apartments-2/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">The Haus Studio Apartments</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/K1-Winery-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/k1-winery/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">K1 Winery</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/55708_165645590125507_7049646_o.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-manna-motel-of-hahndorf/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">The Manna Motel of Hahndorf</span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Inavogue-Showroom-2-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/inavogue-showroom/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Inavogue Showroom</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Pulteney-Plaza-Apartments-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/pulteney-plaza-adelaide/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Pulteney Plaza Apartments</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Rivercorp-Monarto-Apple-Processing-Plant.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/rivercorp-monarto-apple-processing-facility/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Rivercorp Monarto Apple Processing Facility</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Elders-Strathalbyn-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/elders-strathalbyn/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Elders Strathalbyn</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Commercial", "", "inherit", "closed", "closed", "", "175-revision-v1", "", "", "2018-06-11 05:16:16", "2018-06-11 05:16:16", "", "175", "https://beyondink.alluredigitalmarketing.com.au/175-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("818", "1", "2018-06-11 07:10:39", "2018-06-11 07:10:39", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"194deg\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/lt-1-1P2147-1811196365-rsd-800x533.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\" use_custom_width=\"on\" custom_width_px=\"1143px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Residential Projects</h1>\n<p><span style=\"color: #ffffff;\">Designing and building beautiful homes in the Adelaide Hills area since 2006.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"50px|0px|27px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Bell-Crt-4-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/adelaide-hills-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Adelaide Hills Residence </span></p>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/aldgate-renovation/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Aldgate Renovation </span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Battunga-Residence.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/battunga-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Battunga Residence</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6211-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/bridgewater-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Bridgewater Residence</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/6.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/bridgewater-rammed-earth-renovation/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Bridgewater Rammed Earth Renovation</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/The-Latch-Atkinson-Rd-Crafers-West-5-800x532.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/crafers-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Crafers Residence</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Echunga-Residence.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/echunga-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Echunga Residence</span></p>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Jupiter-Creek-Residence.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/jupiter-creek-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Jupiter Creek Residence</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence-6.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/kensington-gardens/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Kensington Gardens Residence</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/IMG_0623-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/littlehampton-renovation-additions/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Littlehampton Renovation and Additions</span><span style=\"font-size: 18px;\"> </span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/14-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/totness-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Totness Residence</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Residential", "", "inherit", "closed", "closed", "", "152-revision-v1", "", "", "2018-06-11 07:10:39", "2018-06-11 07:10:39", "", "152", "https://beyondink.alluredigitalmarketing.com.au/152-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("816", "1", "2018-06-11 07:06:30", "2018-06-11 07:06:30", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Exterior-3-of-6-800x535.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Residential Projects</h1>\n<p><span style=\"color: #ffffff;\">We\'ve designed and built dozens of beautiful homes in the Adelaide Hills area throughout our more than ten years in business.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"50px|0px|27px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Bell-Crt-4-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/adelaide-hills-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Adelaide Hills Residence </span></p>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/aldgate-renovation/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Aldgate Renovation </span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Battunga-Residence.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/battunga-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Battunga Residence</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6211-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/bridgewater-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Bridgewater Residence</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/6.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/bridgewater-rammed-earth-renovation/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Bridgewater Rammed Earth Renovation</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/The-Latch-Atkinson-Rd-Crafers-West-5-800x532.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/crafers-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Crafers Residence</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Echunga-Residence.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/echunga-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Echunga Residence</span></p>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Jupiter-Creek-Residence.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/jupiter-creek-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Jupiter Creek Residence</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence-6.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/kensington-gardens/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Kensington Gardens Residence</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/IMG_0623-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/littlehampton-renovation-additions/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Littlehampton Renovation and Additions</span><span style=\"font-size: 18px;\"> </span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/14-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/totness-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Totness Residence</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Residential", "", "inherit", "closed", "closed", "", "152-revision-v1", "", "", "2018-06-11 07:06:30", "2018-06-11 07:06:30", "", "152", "https://beyondink.alluredigitalmarketing.com.au/152-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("953", "1", "2018-07-08 10:16:04", "2018-07-08 10:16:04", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"194deg\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/IMG_6211-1280x853.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1143px\" custom_padding=\"0|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Residential Projects</h1>\n<p><span style=\"color: #ffffff;\">Designing and building beautiful homes in the Adelaide Hills area since 2006.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"41px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Bell-Crt-4-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/adelaide-hills-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Adelaide Hills Residence </span></p>\n<p> </p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/aldgate-renovation/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Aldgate Renovation </span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Battunga-Residence.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/battunga-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Battunga Residence</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6211-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/bridgewater-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Bridgewater Residence</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"1px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/6.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/bridgewater-rammed-earth-renovation/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Bridgewater Rammed Earth Renovation</span></p>\n<p> </p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/The-Latch-Atkinson-Rd-Crafers-West-5-800x532.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/crafers-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Crafers Residence</span></p>\n<p> </p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Echunga-Residence.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/echunga-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Echunga Residence</span></p>\n<p> </p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Jupiter-Creek-Residence.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/jupiter-creek-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Jupiter Creek Residence</span></p>\n<p> </p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence-6.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/kensington-gardens/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Kensington Gardens Residence</span></p>\n<p> </p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/IMG_0623-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/littlehampton-renovation-additions/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Littlehampton Renovation and Additions</span><span style=\"font-size: 18px;\"> </span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/14-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/totness-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Totness Residence</span></p>\n<p> </p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Residential", "", "inherit", "closed", "closed", "", "152-revision-v1", "", "", "2018-07-08 10:16:04", "2018-07-08 10:16:04", "", "152", "https://beyondink.alluredigitalmarketing.com.au/152-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("821", "1", "2018-06-11 07:18:47", "2018-06-11 07:18:47", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"194deg\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/lt-1-1P2147-1811196365-rsd-800x533.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"0|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\" use_custom_width=\"on\" custom_width_px=\"1143px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Residential Projects</h1>\n<p><span style=\"color: #ffffff;\">Designing and building beautiful homes in the Adelaide Hills area since 2006.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"41px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Bell-Crt-4-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/adelaide-hills-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Adelaide Hills Residence </span></p>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/aldgate-renovation/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Aldgate Renovation </span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Battunga-Residence.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/battunga-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Battunga Residence</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6211-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/bridgewater-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Bridgewater Residence</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\" custom_padding=\"1px|0px|0|0px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/6.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/bridgewater-rammed-earth-renovation/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Bridgewater Rammed Earth Renovation</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/The-Latch-Atkinson-Rd-Crafers-West-5-800x532.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/crafers-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Crafers Residence</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Echunga-Residence.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/echunga-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Echunga Residence</span></p>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Jupiter-Creek-Residence.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/jupiter-creek-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Jupiter Creek Residence</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\" custom_padding=\"0|0px|0|0px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence-6.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/kensington-gardens/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Kensington Gardens Residence</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/IMG_0623-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/littlehampton-renovation-additions/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Littlehampton Renovation and Additions</span><span style=\"font-size: 18px;\"> </span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/14-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/totness-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Totness Residence</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Residential", "", "inherit", "closed", "closed", "", "152-revision-v1", "", "", "2018-06-11 07:18:47", "2018-06-11 07:18:47", "", "152", "https://beyondink.alluredigitalmarketing.com.au/152-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("820", "1", "2018-06-11 07:18:05", "2018-06-11 07:18:05", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"194deg\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/lt-1-1P2147-1811196365-rsd-800x533.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"0|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\" use_custom_width=\"on\" custom_width_px=\"1143px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Residential Projects</h1>\n<p><span style=\"color: #ffffff;\">Designing and building beautiful homes in the Adelaide Hills area since 2006.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"50px|0px|27px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Bell-Crt-4-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/adelaide-hills-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Adelaide Hills Residence </span></p>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/aldgate-renovation/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Aldgate Renovation </span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Battunga-Residence.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/battunga-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Battunga Residence</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6211-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/bridgewater-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Bridgewater Residence</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/6.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/bridgewater-rammed-earth-renovation/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Bridgewater Rammed Earth Renovation</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/The-Latch-Atkinson-Rd-Crafers-West-5-800x532.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/crafers-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Crafers Residence</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Echunga-Residence.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/echunga-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Echunga Residence</span></p>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Jupiter-Creek-Residence.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/jupiter-creek-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Jupiter Creek Residence</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence-6.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/kensington-gardens/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Kensington Gardens Residence</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/IMG_0623-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/littlehampton-renovation-additions/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Littlehampton Renovation and Additions</span><span style=\"font-size: 18px;\"> </span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/14-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/totness-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Totness Residence</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Residential", "", "inherit", "closed", "closed", "", "152-revision-v1", "", "", "2018-06-11 07:18:05", "2018-06-11 07:18:05", "", "152", "https://beyondink.alluredigitalmarketing.com.au/152-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("832", "1", "2018-06-11 07:35:50", "2018-06-11 07:35:50", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>About Us</h1>\n<p><span style=\"color: #ffffff;\">We specialise in commercial and residential property design and construction.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Intro Section\" _builder_version=\"3.0.92\" custom_padding=\"16px|0px|34px|0px\"][et_pb_row custom_padding=\"25px|0px|0|0px\" admin_label=\"Intro Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>Design innovation.<br />Building Excellence.</h2>\n<p><span style=\"font-size: 18px;\">Established in 2006 by owner John Ashcroft, we\'re known for our progressive and innovative design. We specialise in major regional projects which add value and vibrancy to communities. </span></p>\n<p><span style=\"font-size: 18px;\">Regardless of the size of the project - whether it be a renovation or extension, or a large-scale build; our streamlined budget management system ensures peace of mind for our clients from beginning to end.</span></p>\n<p>Our recent projects include the design of the Wolf Blass Gallery and Museum in Hahndorf’s Main Street; and the redesign of the new world-class Murray Bridge Racing Club.</p>\n<p>Other past projects include landmark destinations such as The Manna Hotel, The Lane Winery, The Haus Restaurant, and Barker Plaza Shopping Centre.</p>[/et_pb_text][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\" use_custom_width=\"on\" custom_width_px=\"1564px\" custom_margin=\"|||\" custom_padding=\"1px|0px|27px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"828,468,332,199\" gallery_captions=\",,,\" show_title_and_caption=\"off\" show_pagination=\"off\" _builder_version=\"3.0.106\" hover_overlay_color=\"rgba(255,255,255,0.63)\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "closed", "closed", "", "211-revision-v1", "", "", "2018-06-11 07:35:50", "2018-06-11 07:35:50", "", "211", "https://beyondink.alluredigitalmarketing.com.au/211-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("834", "1", "2018-06-11 07:36:06", "2018-06-11 07:36:06", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>About Us</h1>\n<p><span style=\"color: #ffffff;\">We specialise in commercial and residential property design and construction.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Intro Section\" _builder_version=\"3.0.92\" custom_padding=\"16px|0px|0|0px\"][et_pb_row custom_padding=\"25px|0px|0|0px\" admin_label=\"Intro Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>Design innovation.<br />Building Excellence.</h2>\n<p><span style=\"font-size: 18px;\">Established in 2006 by owner John Ashcroft, we\'re known for our progressive and innovative design. We specialise in major regional projects which add value and vibrancy to communities. </span></p>\n<p><span style=\"font-size: 18px;\">Regardless of the size of the project - whether it be a renovation or extension, or a large-scale build; our streamlined budget management system ensures peace of mind for our clients from beginning to end.</span></p>\n<p>Our recent projects include the design of the Wolf Blass Gallery and Museum in Hahndorf’s Main Street; and the redesign of the new world-class Murray Bridge Racing Club.</p>\n<p>Other past projects include landmark destinations such as The Manna Hotel, The Lane Winery, The Haus Restaurant, and Barker Plaza Shopping Centre.</p>[/et_pb_text][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\" use_custom_width=\"on\" custom_width_px=\"1564px\" custom_margin=\"|||\" custom_padding=\"1px|0px|0|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"828,468,332,199\" gallery_captions=\",,,\" show_title_and_caption=\"off\" show_pagination=\"off\" _builder_version=\"3.0.106\" hover_overlay_color=\"rgba(255,255,255,0.63)\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "closed", "closed", "", "211-revision-v1", "", "", "2018-06-11 07:36:06", "2018-06-11 07:36:06", "", "211", "https://beyondink.alluredigitalmarketing.com.au/211-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1081", "1", "2018-07-18 11:22:53", "2018-07-18 11:22:53", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Coming Soon</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"27px|0px|59px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/murray-bridge-racing-club/\" align=\"center\" _builder_version=\"3.0.106\" max_width=\"60%\"][/et_pb_image][et_pb_text admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"-50px|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-size: 18px;\">Racing at Gifford Hill - Murray Bridge Racing Club</span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Coming Soon", "", "inherit", "closed", "closed", "", "195-revision-v1", "", "", "2018-07-18 11:22:53", "2018-07-18 11:22:53", "", "195", "https://beyondink.alluredigitalmarketing.com.au/195-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("836", "1", "2018-06-11 07:38:35", "2018-06-11 07:38:35", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Renovations</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"50px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0182-800x533-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/hahndorf-academy/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Hahndorf Academy</span></p>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6211-800x533-3.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/skilly-hills-function-centre-restoration-project/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Skilly Hills Function Centre and Renovation Project</span></p>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Renovations", "", "inherit", "closed", "closed", "", "204-revision-v1", "", "", "2018-06-11 07:38:35", "2018-06-11 07:38:35", "", "204", "https://beyondink.alluredigitalmarketing.com.au/204-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("823", "1", "2018-06-11 07:19:23", "2018-06-11 07:19:23", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/North-East-Corner-Dulux-Gunmetal-Kinetic.jpg\" custom_padding=\"9.8%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Commercial Projects</h1>\n<p><span style=\"color: #ffffff;\">We specialise in major regional developments - from design and construction to entire management of your project.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"50px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Lane-Winery.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-lane-vineyard/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">The Lane Winery</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Barker-Plaza-Entrance-800x534.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/barker-plaza/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Barker Plaza Shopping Centre</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Hahndorf.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-haus-cafebarkitchen/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">The Haus Cafe+Bar+Kitchen</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Studio-Apartments.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-manna-apartments-2/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">The Haus Studio Apartments</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/K1-Winery-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/k1-winery/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">K1 Winery</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/55708_165645590125507_7049646_o.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-manna-motel-of-hahndorf/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">The Manna Motel of Hahndorf</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Inavogue-Showroom-2-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/inavogue-showroom/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Inavogue Showroom</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Pulteney-Plaza-Apartments-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/pulteney-plaza-adelaide/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Pulteney Plaza Apartments</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\" custom_padding=\"0|0px|27px|0px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Rivercorp-Monarto-Apple-Processing-Plant.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/rivercorp-monarto-apple-processing-facility/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Rivercorp Monarto Apple Processing Facility</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Elders-Strathalbyn-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/elders-strathalbyn/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Elders Strathalbyn</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Commercial", "", "inherit", "closed", "closed", "", "175-revision-v1", "", "", "2018-06-11 07:19:23", "2018-06-11 07:19:23", "", "175", "https://beyondink.alluredigitalmarketing.com.au/175-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("824", "1", "2018-06-11 07:19:42", "2018-06-11 07:19:42", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/North-East-Corner-Dulux-Gunmetal-Kinetic.jpg\" custom_padding=\"9.8%|0px|123px|0px\"][et_pb_row custom_padding=\"21px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Commercial Projects</h1>\n<p><span style=\"color: #ffffff;\">We specialise in major regional developments - from design and construction to entire management of your project.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"50px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Lane-Winery.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-lane-vineyard/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">The Lane Winery</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Barker-Plaza-Entrance-800x534.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/barker-plaza/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Barker Plaza Shopping Centre</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Hahndorf.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-haus-cafebarkitchen/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">The Haus Cafe+Bar+Kitchen</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Studio-Apartments.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-manna-apartments-2/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">The Haus Studio Apartments</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/K1-Winery-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/k1-winery/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">K1 Winery</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/55708_165645590125507_7049646_o.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-manna-motel-of-hahndorf/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">The Manna Motel of Hahndorf</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Inavogue-Showroom-2-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/inavogue-showroom/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Inavogue Showroom</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Pulteney-Plaza-Apartments-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/pulteney-plaza-adelaide/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Pulteney Plaza Apartments</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\" custom_padding=\"0|0px|27px|0px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Rivercorp-Monarto-Apple-Processing-Plant.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/rivercorp-monarto-apple-processing-facility/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Rivercorp Monarto Apple Processing Facility</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Elders-Strathalbyn-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/elders-strathalbyn/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Elders Strathalbyn</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Commercial", "", "inherit", "closed", "closed", "", "175-revision-v1", "", "", "2018-06-11 07:19:42", "2018-06-11 07:19:42", "", "175", "https://beyondink.alluredigitalmarketing.com.au/175-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("825", "1", "2018-06-11 07:20:33", "2018-06-11 07:20:33", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" background_position_2=\"center\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/contact/\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]<p>As a boutique design and construction company, we\'re big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"21px||0|\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"2188px\" use_custom_gutter=\"on\" gutter_width=\"6\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2><strong>Commercial Projects. New Homes. Additions.</strong></h2>\n<h3><span style=\"color: #000000;\"><strong>Insightful design. Exemplary construction.</strong></span></h3>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Interior Design<br /> • Landcape Design</p>\n<p>A boutique residential & commercial design & construction company.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Commercial<br /> • Residential</p>\n<p>We\'re passionate about innovation to create the best possible space.</p>\n<p> </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Town Planning<br /> • Cost Control</p>\n<p>We\'re committed to quality and value for money, delivering on time and on budget.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0|0px|0|0px\" custom_margin=\"||50px|\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Bridgewater-House.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"40px|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]<p>Our commercial portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_margin=\"-50px||-50px|\" custom_padding=\"0|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]<p>Sign up to keep up to date with what\'s happening at Beyond Ink.</p>[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"]<p><em><span style=\"color: #ffffff;\">We promise not to spam!</span></em></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-06-11 07:20:33", "2018-06-11 07:20:33", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("826", "1", "2018-06-11 07:23:27", "2018-06-11 07:23:27", "", "Commercial Projects", "", "inherit", "open", "closed", "", "11-walker-street-hi-res-1024x523", "", "", "2018-06-11 07:23:50", "2018-06-11 07:23:50", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/11-Walker-Street-HI-RES-1024x523.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("956", "1", "2018-07-08 10:20:35", "2018-07-08 10:20:35", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Coming Soon</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"27px|0px|59px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/murray-bridge-racing-club/\" align=\"center\" _builder_version=\"3.0.106\" max_width=\"60%\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"-50px|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"> </span></p>\n<p><span style=\"font-size: 18px;\">Racing at Gifford Hill - Murray Bridge Racing Club</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Coming Soon", "", "inherit", "closed", "closed", "", "195-revision-v1", "", "", "2018-07-08 10:20:35", "2018-07-08 10:20:35", "", "195", "https://beyondink.alluredigitalmarketing.com.au/195-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("880", "1", "2018-06-12 11:25:08", "2018-06-12 11:25:08", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/North-East-Corner-Dulux-Gunmetal-Kinetic-800x254.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"0|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\" custom_margin=\"-25px||-25px|\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Coming Soon</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row _builder_version=\"3.0.106\" custom_padding=\"27px|0px|59px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/murray-bridge-racing-club/\" align=\"center\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"-50px|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"> </span></p>\n<p><span style=\"font-size: 18px;\">Racing at Gifford Hill - Murray Bridge Racing Club</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Coming Soon", "", "inherit", "closed", "closed", "", "195-revision-v1", "", "", "2018-06-12 11:25:08", "2018-06-12 11:25:08", "", "195", "https://beyondink.alluredigitalmarketing.com.au/195-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("837", "1", "2018-06-11 07:39:50", "2018-06-11 07:39:50", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/North-East-Corner-Dulux-Gunmetal-Kinetic-800x254.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Coming Soon</h1>\n<p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/murray-bridge-racing-club/\" align=\"center\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"> </span></p>\n<p><span style=\"font-size: 18px;\">Racing at Gifford Hill - Murray Bridge Racing Club</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Coming Soon", "", "inherit", "closed", "closed", "", "195-revision-v1", "", "", "2018-06-11 07:39:50", "2018-06-11 07:39:50", "", "195", "https://beyondink.alluredigitalmarketing.com.au/195-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("830", "1", "2018-06-11 07:34:35", "2018-06-11 07:34:35", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>About Us</h1>\n<p><span style=\"color: #ffffff;\">We specialise in commercial and residential property design and construction.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Intro Section\" _builder_version=\"3.0.92\" custom_padding=\"16px|0px|34px|0px\"][et_pb_row custom_padding=\"25px|0px|0|0px\" admin_label=\"Intro Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>Design innovation.<br />Building Excellence.</h2>\n<p><span style=\"font-size: 18px;\">Established in 2006 by owner John Ashcroft, we\'re known for our progressive and innovative design. We specialise in major regional projects which add value and vibrancy to communities. </span></p>\n<p><span style=\"font-size: 18px;\">Regardless of the size of the project - whether it be a renovation or extension, or a large-scale build; our streamlined budget management system ensures peace of mind for our clients from beginning to end.</span></p>\n<p>Our recent projects include the design of the Wolf Blass Gallery and Museum in Hahndorf’s Main Street; and the redesign of the new world-class Murray Bridge Racing Club.</p>\n<p>Other past projects include landmark destinations such as The Manna Hotel, The Lane Winery, The Haus Restaurant, and Barker Plaza Shopping Centre.</p>[/et_pb_text][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\" use_custom_width=\"on\" custom_width_px=\"1564px\" custom_margin=\"|||\" custom_padding=\"1px|0px|27px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"828,468,332,199\" gallery_captions=\",,,\" show_title_and_caption=\"off\" show_pagination=\"off\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "closed", "closed", "", "211-revision-v1", "", "", "2018-06-11 07:34:35", "2018-06-11 07:34:35", "", "211", "https://beyondink.alluredigitalmarketing.com.au/211-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("828", "1", "2018-06-11 07:25:08", "2018-06-11 07:25:08", "", "Commercial Projects", "", "inherit", "open", "closed", "", "perspective-rev-b-august-1024x516", "", "", "2018-06-11 07:25:13", "2018-06-11 07:25:13", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Perspective-REV-B-AUGUST-1024x516.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("829", "1", "2018-06-11 07:26:37", "2018-06-11 07:26:37", "", "The Lane Vineyard", "", "inherit", "open", "closed", "", "the-lane-feb-2015", "", "", "2018-06-11 07:26:46", "2018-06-11 07:26:46", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Lane-Feb-2015.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("840", "1", "2018-06-12 00:51:34", "2018-06-12 00:51:34", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" background_position_2=\"center\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/contact/\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]<p>As a boutique design and construction company, we\'re big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"21px||0|\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"2188px\" use_custom_gutter=\"on\" gutter_width=\"6\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2><strong>Commercial Projects. New Homes. Additions.</strong></h2>\n<h3><span style=\"color: #000000;\"><strong>Insightful design. Exemplary construction.</strong></span></h3>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Interior Design<br /> • Landcape Design</p>\n<p>We\'re a commercial and residential design and construction company.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Commercial<br /> • Residential</p>\n<p>We\'re passionate about innovation to create the best possible space.</p>\n<p> </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Town Planning<br /> • Cost Control</p>\n<p>We\'re committed to quality and value for money, delivering on time and on budget.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0|0px|0|0px\" custom_margin=\"||50px|\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/11-Walker-Street-HI-RES-1024x523.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"0px|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]<p><span style=\"color: #ffffff;\">Our portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_margin=\"-50px||-50px|\" custom_padding=\"0|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]<p>Sign up to keep up to date with what\'s happening at Beyond Ink.</p>[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"]<p><em><span style=\"color: #ffffff;\">We promise not to spam!</span></em></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-06-12 00:51:34", "2018-06-12 00:51:34", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("842", "1", "2018-06-12 00:53:20", "2018-06-12 00:53:20", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" background_position_2=\"center\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/contact/\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]<p>As a boutique design and construction company, we\'re big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"21px||0|\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"2188px\" use_custom_gutter=\"on\" gutter_width=\"6\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2><strong>Commercial Projects. New Homes. Additions.</strong></h2>\n<h3><span style=\"color: #000000;\"><strong>Insightful design. Exemplary construction.</strong></span></h3>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Interior Design<br /> • Landcape Design</p>\n<p>We\'re a commercial and residential design and construction company.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Commercial<br /> • Residential</p>\n<p>We\'re passionate about innovation to create the best possible space.</p>\n<p> </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Town Planning<br /> • Cost Control</p>\n<p>We\'re committed to quality and value for money, delivering on time and on budget.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0|0px|23px|0px\" custom_margin=\"||50px|\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"||50px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/11-Walker-Street-HI-RES-1024x523.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"0px|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]<p><span style=\"color: #ffffff;\">Our portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_margin=\"-50px||-50px|\" custom_padding=\"0|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]<p>Sign up to keep up to date with what\'s happening at Beyond Ink.</p>[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"]<p><em><span style=\"color: #ffffff;\">We promise not to spam!</span></em></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-06-12 00:53:20", "2018-06-12 00:53:20", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("847", "1", "2018-06-12 09:53:20", "2018-06-12 09:53:20", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" background_position_2=\"center\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/contact/\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]<p>As a boutique design and construction company, we\'re big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"21px||0|\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"2188px\" use_custom_gutter=\"on\" gutter_width=\"6\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2><strong>Commercial Projects. New Homes. Additions.</strong></h2>\n<h3><span style=\"color: #000000;\"><strong>Insightful design. Exemplary construction.</strong></span></h3>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Interior Design<br /> • Landcape Design</p>\n<p>We\'re a commercial and residential design and construction company.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Commercial<br /> • Residential</p>\n<p>We\'re passionate about innovation to create the best possible space.</p>\n<p> </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Town Planning<br /> • Cost Control</p>\n<p>We\'re committed to quality and value for money, delivering on time and on budget.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|27px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"523,302,144,252,181,459\" gallery_captions=\",,,,,\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_margin=\"-35px||25px|\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0|0px|23px|0px\" custom_margin=\"||50px|\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/11-Walker-Street-HI-RES-1024x523.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"0px|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]<p><span style=\"color: #ffffff;\">Our portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_margin=\"-50px||-50px|\" custom_padding=\"0|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]<p>Sign up to keep up to date with what\'s happening at Beyond Ink.</p>[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"]<p><em><span style=\"color: #ffffff;\">We promise not to spam!</span></em></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-06-12 09:53:20", "2018-06-12 09:53:20", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("844", "1", "2018-06-12 00:56:13", "2018-06-12 00:56:13", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" background_position_2=\"center\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/contact/\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]<p>As a boutique design and construction company, we\'re big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"21px||0|\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"2188px\" use_custom_gutter=\"on\" gutter_width=\"6\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2><strong>Commercial Projects. New Homes. Additions.</strong></h2>\n<h3><span style=\"color: #000000;\"><strong>Insightful design. Exemplary construction.</strong></span></h3>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Interior Design<br /> • Landcape Design</p>\n<p>We\'re a commercial and residential design and construction company.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Commercial<br /> • Residential</p>\n<p>We\'re passionate about innovation to create the best possible space.</p>\n<p> </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Town Planning<br /> • Cost Control</p>\n<p>We\'re committed to quality and value for money, delivering on time and on budget.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\" custom_padding=\"0|0px|27px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"723,502,459,302,182\" gallery_captions=\",,,,\" _builder_version=\"3.0.106\" fullwidth=\"on\" custom_margin=\"-35px||25px|\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0|0px|23px|0px\" custom_margin=\"||50px|\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"||50px|\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/11-Walker-Street-HI-RES-1024x523.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"0px|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]<p><span style=\"color: #ffffff;\">Our portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_margin=\"-50px||-50px|\" custom_padding=\"0|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]<p>Sign up to keep up to date with what\'s happening at Beyond Ink.</p>[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"]<p><em><span style=\"color: #ffffff;\">We promise not to spam!</span></em></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-06-12 00:56:13", "2018-06-12 00:56:13", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("859", "1", "2018-06-12 10:12:56", "2018-06-12 10:12:56", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" background_position_2=\"center\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/contact/\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]<p>As a boutique design and construction company, we\'re big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"21px||0|\"][et_pb_row _builder_version=\"3.0.106\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/North-East-Corner-Dulux-Gunmetal-Kinetic-800x254.jpg\" _builder_version=\"3.0.106\" align=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"2188px\" use_custom_gutter=\"on\" gutter_width=\"6\" custom_padding=\"0|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2><strong>Commercial Projects. New Homes. Additions.</strong></h2>\n<h3><span style=\"color: #000000;\"><strong>Insightful design. Exemplary construction.</strong></span></h3>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\" custom_padding=\"27px|0px|0|0px\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Interior Design<br /> • Landcape Design</p>\n<p>We\'re a commercial and residential design and construction company.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Commercial<br /> • Residential</p>\n<p>We\'re passionate about innovation to create the best possible space.</p>\n<p> </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Town Planning<br /> • Cost Control</p>\n<p>We\'re committed to quality and value for money, delivering on time and on budget.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-13-of-47-800x535.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Barker-Plaza-Entrance-800x534.jpg\" _builder_version=\"3.0.106\" custom_margin=\"||25px|\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0|0px|23px|0px\" custom_margin=\"||50px|\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/11-Walker-Street-HI-RES-1024x523.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"0px|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]<p><span style=\"color: #ffffff;\">Our portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_margin=\"-50px||-50px|\" custom_padding=\"0|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]<p>Sign up to keep up to date with what\'s happening at Beyond Ink.</p>[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"]<p><em><span style=\"color: #ffffff;\">We promise not to spam!</span></em></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-06-12 10:12:56", "2018-06-12 10:12:56", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("849", "1", "2018-06-12 09:57:12", "2018-06-12 09:57:12", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" background_position_2=\"center\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/contact/\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]<p>As a boutique design and construction company, we\'re big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"21px||0|\"][et_pb_row _builder_version=\"3.0.106\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/North-East-Corner-Dulux-Gunmetal-Kinetic-800x254.jpg\" _builder_version=\"3.0.106\" align=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"2188px\" use_custom_gutter=\"on\" gutter_width=\"6\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2><strong>Commercial Projects. New Homes. Additions.</strong></h2>\n<h3><span style=\"color: #000000;\"><strong>Insightful design. Exemplary construction.</strong></span></h3>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Interior Design<br /> • Landcape Design</p>\n<p>We\'re a commercial and residential design and construction company.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Commercial<br /> • Residential</p>\n<p>We\'re passionate about innovation to create the best possible space.</p>\n<p> </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Town Planning<br /> • Cost Control</p>\n<p>We\'re committed to quality and value for money, delivering on time and on budget.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|27px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"523,302,144,252,181,459\" gallery_captions=\",,,,,\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_margin=\"-35px||25px|\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0|0px|23px|0px\" custom_margin=\"||50px|\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/11-Walker-Street-HI-RES-1024x523.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"0px|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]<p><span style=\"color: #ffffff;\">Our portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_margin=\"-50px||-50px|\" custom_padding=\"0|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]<p>Sign up to keep up to date with what\'s happening at Beyond Ink.</p>[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"]<p><em><span style=\"color: #ffffff;\">We promise not to spam!</span></em></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-06-12 09:57:12", "2018-06-12 09:57:12", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("851", "1", "2018-06-12 10:02:49", "2018-06-12 10:02:49", "", "Murray Bridge Racing Club", "", "inherit", "open", "closed", "", "front-entry-portal-dulux-gunmetal-kinetic-800x410-3", "", "", "2018-06-12 10:02:59", "2018-06-12 10:02:59", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Front-Entry-Portal-Dulux-Gunmetal-Kinetic-800x410.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("852", "1", "2018-06-12 10:04:09", "2018-06-12 10:04:09", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" background_position_2=\"center\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/contact/\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]<p>As a boutique design and construction company, we\'re big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"21px||0|\"][et_pb_row _builder_version=\"3.0.106\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/North-East-Corner-Dulux-Gunmetal-Kinetic-800x254.jpg\" _builder_version=\"3.0.106\" align=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"2188px\" use_custom_gutter=\"on\" gutter_width=\"6\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2><strong>Commercial Projects. New Homes. Additions.</strong></h2>\n<h3><span style=\"color: #000000;\"><strong>Insightful design. Exemplary construction.</strong></span></h3>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Interior Design<br /> • Landcape Design</p>\n<p>We\'re a commercial and residential design and construction company.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Commercial<br /> • Residential</p>\n<p>We\'re passionate about innovation to create the best possible space.</p>\n<p> </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Town Planning<br /> • Cost Control</p>\n<p>We\'re committed to quality and value for money, delivering on time and on budget.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|27px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"523,302,851,252,588,459\" gallery_captions=\",,,,,\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_margin=\"-35px||25px|\" max_width=\"68%\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0|0px|23px|0px\" custom_margin=\"||50px|\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/11-Walker-Street-HI-RES-1024x523.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"0px|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]<p><span style=\"color: #ffffff;\">Our portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_margin=\"-50px||-50px|\" custom_padding=\"0|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]<p>Sign up to keep up to date with what\'s happening at Beyond Ink.</p>[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"]<p><em><span style=\"color: #ffffff;\">We promise not to spam!</span></em></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-06-12 10:04:09", "2018-06-12 10:04:09", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("854", "1", "2018-06-12 10:06:06", "2018-06-12 10:06:06", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" background_position_2=\"center\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/contact/\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]<p>As a boutique design and construction company, we\'re big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"21px||0|\"][et_pb_row _builder_version=\"3.0.106\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/North-East-Corner-Dulux-Gunmetal-Kinetic-800x254.jpg\" _builder_version=\"3.0.106\" align=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"2188px\" use_custom_gutter=\"on\" gutter_width=\"6\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2><strong>Commercial Projects. New Homes. Additions.</strong></h2>\n<h3><span style=\"color: #000000;\"><strong>Insightful design. Exemplary construction.</strong></span></h3>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Interior Design<br /> • Landcape Design</p>\n<p>We\'re a commercial and residential design and construction company.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Commercial<br /> • Residential</p>\n<p>We\'re passionate about innovation to create the best possible space.</p>\n<p> </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Town Planning<br /> • Cost Control</p>\n<p>We\'re committed to quality and value for money, delivering on time and on budget.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|27px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"523,302,851,252,588,459\" gallery_captions=\",,,,,\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_margin=\"-35px||25px|\" max_width=\"68%\" custom_css_main_element=\"margin:0 auto;\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0|0px|23px|0px\" custom_margin=\"||50px|\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/11-Walker-Street-HI-RES-1024x523.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"0px|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]<p><span style=\"color: #ffffff;\">Our portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_margin=\"-50px||-50px|\" custom_padding=\"0|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]<p>Sign up to keep up to date with what\'s happening at Beyond Ink.</p>[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"]<p><em><span style=\"color: #ffffff;\">We promise not to spam!</span></em></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-06-12 10:06:06", "2018-06-12 10:06:06", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("856", "1", "2018-06-12 10:11:07", "2018-06-12 10:11:07", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" background_position_2=\"center\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/contact/\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]<p>As a boutique design and construction company, we\'re big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"21px||0|\"][et_pb_row _builder_version=\"3.0.106\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/North-East-Corner-Dulux-Gunmetal-Kinetic-800x254.jpg\" _builder_version=\"3.0.106\" align=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"2188px\" use_custom_gutter=\"on\" gutter_width=\"6\" custom_padding=\"27px|0px|27px|0px\" custom_margin=\"|||\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2><strong>Commercial Projects. New Homes. Additions.</strong></h2>\n<h3><span style=\"color: #000000;\"><strong>Insightful design. Exemplary construction.</strong></span></h3>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Interior Design<br /> • Landcape Design</p>\n<p>We\'re a commercial and residential design and construction company.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Commercial<br /> • Residential</p>\n<p>We\'re passionate about innovation to create the best possible space.</p>\n<p> </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Town Planning<br /> • Cost Control</p>\n<p>We\'re committed to quality and value for money, delivering on time and on budget.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Barker-Plaza-Entrance-800x534.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Front-Entry-Portal-Dulux-Gunmetal-Kinetic-800x410.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Studio-Apartments.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\" custom_margin=\"||25px|\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6211-800x533-1.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-13-of-47-800x535.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0|0px|23px|0px\" custom_margin=\"||50px|\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/11-Walker-Street-HI-RES-1024x523.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"0px|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]<p><span style=\"color: #ffffff;\">Our portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_margin=\"-50px||-50px|\" custom_padding=\"0|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]<p>Sign up to keep up to date with what\'s happening at Beyond Ink.</p>[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"]<p><em><span style=\"color: #ffffff;\">We promise not to spam!</span></em></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-06-12 10:11:07", "2018-06-12 10:11:07", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("870", "1", "2018-06-12 10:20:55", "2018-06-12 10:20:55", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" background_position_2=\"center\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/contact/\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]<p>As a boutique design and construction company, we\'re big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"21px||0|\"][et_pb_row _builder_version=\"3.0.106\" custom_padding=\"27px|0px|1px|0px\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Barker-Plaza-Entrance-800x534.jpg\" _builder_version=\"3.0.106\" align=\"center\" custom_margin=\"||25px|\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-13-of-47-800x535.jpg\" _builder_version=\"3.0.106\" align=\"center\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533.jpg\" _builder_version=\"3.0.106\" align=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|0|0px\"][et_pb_row _builder_version=\"3.0.106\" custom_margin_last_edited=\"on|phone\" custom_margin=\"-45px|||\" custom_margin_phone=\"-25px|||\" custom_padding=\"0|0px|27px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2><strong>Commercial Projects. New Homes. Additions.</strong></h2>\n<h3><span style=\"color: #000000;\"><strong>Insightful design. Exemplary construction.</strong></span></h3>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"21px||0|\"][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\" custom_padding=\"0|0px|0|0px\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Interior Design<br /> • Landcape Design</p>\n<p>We\'re a commercial and residential design and construction company.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Commercial<br /> • Residential</p>\n<p>We\'re passionate about innovation to create the best possible space.</p>\n<p> </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Town Planning<br /> • Cost Control</p>\n<p>We\'re committed to quality and value for money, delivering on time and on budget.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0|0px|23px|0px\" custom_margin=\"||50px|\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/11-Walker-Street-HI-RES-1024x523.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"0px|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]<p><span style=\"color: #ffffff;\">Our portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_margin=\"-50px||-50px|\" custom_padding=\"0|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]<p>Sign up to keep up to date with what\'s happening at Beyond Ink.</p>[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"]<p><em><span style=\"color: #ffffff;\">We promise not to spam!</span></em></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-06-12 10:20:55", "2018-06-12 10:20:55", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("869", "1", "2018-06-12 10:20:46", "2018-06-12 10:20:46", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" background_position_2=\"center\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/contact/\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]<p>As a boutique design and construction company, we\'re big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"21px||0|\"][et_pb_row _builder_version=\"3.0.106\" custom_padding=\"27px|0px|1px|0px\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-13-of-47-800x535.jpg\" _builder_version=\"3.0.106\" align=\"center\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Barker-Plaza-Entrance-800x534.jpg\" _builder_version=\"3.0.106\" align=\"center\" custom_margin=\"||25px|\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533.jpg\" _builder_version=\"3.0.106\" align=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|0|0px\"][et_pb_row _builder_version=\"3.0.106\" custom_margin_last_edited=\"on|phone\" custom_margin=\"-45px|||\" custom_margin_phone=\"-25px|||\" custom_padding=\"0|0px|27px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2><strong>Commercial Projects. New Homes. Additions.</strong></h2>\n<h3><span style=\"color: #000000;\"><strong>Insightful design. Exemplary construction.</strong></span></h3>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"21px||0|\"][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\" custom_padding=\"0|0px|0|0px\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Interior Design<br /> • Landcape Design</p>\n<p>We\'re a commercial and residential design and construction company.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Commercial<br /> • Residential</p>\n<p>We\'re passionate about innovation to create the best possible space.</p>\n<p> </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Town Planning<br /> • Cost Control</p>\n<p>We\'re committed to quality and value for money, delivering on time and on budget.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0|0px|23px|0px\" custom_margin=\"||50px|\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/11-Walker-Street-HI-RES-1024x523.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"0px|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]<p><span style=\"color: #ffffff;\">Our portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_margin=\"-50px||-50px|\" custom_padding=\"0|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]<p>Sign up to keep up to date with what\'s happening at Beyond Ink.</p>[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"]<p><em><span style=\"color: #ffffff;\">We promise not to spam!</span></em></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-06-12 10:20:46", "2018-06-12 10:20:46", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("867", "1", "2018-06-12 10:20:09", "2018-06-12 10:20:09", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" background_position_2=\"center\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/contact/\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]<p>As a boutique design and construction company, we\'re big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"21px||0|\"][et_pb_row _builder_version=\"3.0.106\" custom_padding=\"27px|0px|0|0px\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-13-of-47-800x535.jpg\" _builder_version=\"3.0.106\" align=\"center\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Barker-Plaza-Entrance-800x534.jpg\" _builder_version=\"3.0.106\" align=\"center\" custom_margin=\"||25px|\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|0|0px\"][et_pb_row _builder_version=\"3.0.106\" custom_margin_last_edited=\"on|phone\" custom_margin=\"-45px|||\" custom_margin_phone=\"-25px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2><strong>Commercial Projects. New Homes. Additions.</strong></h2>\n<h3><span style=\"color: #000000;\"><strong>Insightful design. Exemplary construction.</strong></span></h3>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"21px||0|\"][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\" custom_padding=\"0|0px|0|0px\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Interior Design<br /> • Landcape Design</p>\n<p>We\'re a commercial and residential design and construction company.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Commercial<br /> • Residential</p>\n<p>We\'re passionate about innovation to create the best possible space.</p>\n<p> </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Town Planning<br /> • Cost Control</p>\n<p>We\'re committed to quality and value for money, delivering on time and on budget.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0|0px|23px|0px\" custom_margin=\"||50px|\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/11-Walker-Street-HI-RES-1024x523.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"0px|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]<p><span style=\"color: #ffffff;\">Our portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_margin=\"-50px||-50px|\" custom_padding=\"0|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]<p>Sign up to keep up to date with what\'s happening at Beyond Ink.</p>[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"]<p><em><span style=\"color: #ffffff;\">We promise not to spam!</span></em></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-06-12 10:20:09", "2018-06-12 10:20:09", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("863", "1", "2018-06-12 10:17:02", "2018-06-12 10:17:02", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" background_position_2=\"center\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/contact/\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]<p>As a boutique design and construction company, we\'re big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2><strong>Commercial Projects. New Homes. Additions.</strong></h2>\n<h3><span style=\"color: #000000;\"><strong>Insightful design. Exemplary construction.</strong></span></h3>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\"][et_pb_fullwidth_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/North-East-Corner-Dulux-Gunmetal-Kinetic-800x254.jpg\" _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"21px||0|\"][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\" custom_padding=\"27px|0px|0|0px\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Interior Design<br /> • Landcape Design</p>\n<p>We\'re a commercial and residential design and construction company.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Commercial<br /> • Residential</p>\n<p>We\'re passionate about innovation to create the best possible space.</p>\n<p> </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Town Planning<br /> • Cost Control</p>\n<p>We\'re committed to quality and value for money, delivering on time and on budget.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-13-of-47-800x535.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Barker-Plaza-Entrance-800x534.jpg\" _builder_version=\"3.0.106\" custom_margin=\"||25px|\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0|0px|23px|0px\" custom_margin=\"||50px|\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/11-Walker-Street-HI-RES-1024x523.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"0px|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]<p><span style=\"color: #ffffff;\">Our portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_margin=\"-50px||-50px|\" custom_padding=\"0|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]<p>Sign up to keep up to date with what\'s happening at Beyond Ink.</p>[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"]<p><em><span style=\"color: #ffffff;\">We promise not to spam!</span></em></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-06-12 10:17:02", "2018-06-12 10:17:02", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("865", "1", "2018-06-12 10:17:46", "2018-06-12 10:17:46", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" background_position_2=\"center\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/contact/\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]<p>As a boutique design and construction company, we\'re big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row _builder_version=\"3.0.106\" custom_margin_last_edited=\"on|phone\" custom_margin=\"|||\" custom_margin_phone=\"-25px|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2><strong>Commercial Projects. New Homes. Additions.</strong></h2>\n<h3><span style=\"color: #000000;\"><strong>Insightful design. Exemplary construction.</strong></span></h3>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\"][et_pb_fullwidth_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/North-East-Corner-Dulux-Gunmetal-Kinetic-800x254.jpg\" _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"21px||0|\"][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\" custom_padding=\"27px|0px|0|0px\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Interior Design<br /> • Landcape Design</p>\n<p>We\'re a commercial and residential design and construction company.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Commercial<br /> • Residential</p>\n<p>We\'re passionate about innovation to create the best possible space.</p>\n<p> </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Town Planning<br /> • Cost Control</p>\n<p>We\'re committed to quality and value for money, delivering on time and on budget.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-13-of-47-800x535.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Barker-Plaza-Entrance-800x534.jpg\" _builder_version=\"3.0.106\" custom_margin=\"||25px|\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0|0px|23px|0px\" custom_margin=\"||50px|\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/11-Walker-Street-HI-RES-1024x523.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"0px|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]<p><span style=\"color: #ffffff;\">Our portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_margin=\"-50px||-50px|\" custom_padding=\"0|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]<p>Sign up to keep up to date with what\'s happening at Beyond Ink.</p>[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"]<p><em><span style=\"color: #ffffff;\">We promise not to spam!</span></em></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-06-12 10:17:46", "2018-06-12 10:17:46", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("992", "1", "2018-07-18 09:53:13", "2018-07-18 09:53:13", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>123 Greenhill Road</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235,250,246\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "123 Greenhill Road", "", "inherit", "closed", "closed", "", "985-revision-v1", "", "", "2018-07-18 09:53:13", "2018-07-18 09:53:13", "", "985", "https://beyondink.alluredigitalmarketing.com.au/985-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("872", "1", "2018-06-12 10:24:30", "2018-06-12 10:24:30", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" background_position_2=\"center\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/contact/\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]<p>As a boutique design and construction company, we\'re big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|0|0px\"][et_pb_row _builder_version=\"3.0.106\" custom_margin_last_edited=\"on|phone\" custom_margin=\"-45px|||\" custom_margin_phone=\"-25px|||\" custom_padding=\"0|0px|27px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"25px|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2><strong>Commercial Projects. New Homes. Additions.</strong></h2>\n<h3><span style=\"color: #000000;\"><strong>Insightful design. Exemplary construction.</strong></span></h3>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"21px||0|\"][et_pb_row admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\" custom_padding=\"0|0px|0|0px\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Interior Design<br /> • Landcape Design</p>\n<p>We\'re a commercial and residential design and construction company.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Commercial<br /> • Residential</p>\n<p>We\'re passionate about innovation to create the best possible space.</p>\n<p> </p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p>• Town Planning<br /> • Cost Control</p>\n<p>We\'re committed to quality and value for money, delivering on time and on budget.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"21px||0|\"][et_pb_row _builder_version=\"3.0.106\" custom_padding=\"27px|0px|31px|0px\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Barker-Plaza-Entrance-800x534.jpg\" _builder_version=\"3.0.106\" align=\"center\" custom_margin=\"||25px|\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-13-of-47-800x535.jpg\" _builder_version=\"3.0.106\" align=\"center\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533.jpg\" _builder_version=\"3.0.106\" align=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0|0px|23px|0px\" custom_margin=\"||50px|\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/11-Walker-Street-HI-RES-1024x523.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"0px|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]<p><span style=\"color: #ffffff;\">Our portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_margin=\"-50px||-50px|\" custom_padding=\"0|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]<p>Sign up to keep up to date with what\'s happening at Beyond Ink.</p>[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"]<p><em><span style=\"color: #ffffff;\">We promise not to spam!</span></em></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-06-12 10:24:30", "2018-06-12 10:24:30", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("874", "1", "2018-06-12 11:06:15", "2018-06-12 11:06:15", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" background_position_2=\"center\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/contact/\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]<p>As a boutique design and construction company, we\'re big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|14px|0px\"][et_pb_row custom_padding=\"0|0px|27px|0px\" custom_margin=\"-45px|||\" _builder_version=\"3.0.106\" custom_margin_phone=\"-25px|||\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"25px|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2><strong>Commercial Projects. New Homes. Additions.</strong></h2>\n<h3><span style=\"color: #000000;\"><strong>Insightful design. Exemplary construction.</strong></span></h3>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.106\" custom_padding=\"21px||0|\" background_color=\"#535353\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p><span style=\"color: #ffffff;\">• Interior Design</span><br /><span style=\"color: #ffffff;\"> • Landcape Design</span></p>\n<p><span style=\"color: #ffffff;\">We\'re a commercial and residential design and construction company.</span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p><span style=\"color: #ffffff;\">• Commercial</span><br /><span style=\"color: #ffffff;\"> • Residential</span></p>\n<p><span style=\"color: #ffffff;\">We\'re passionate about innovation to create the best possible space.</span></p>\n<p><span style=\"color: #ffffff;\"> </span></p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p><span style=\"color: #ffffff;\">• Town Planning</span><br /><span style=\"color: #ffffff;\"> • Cost Control</span></p>\n<p><span style=\"color: #ffffff;\">We\'re committed to quality and value for money, delivering on time and on budget.</span></p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"21px||0|\"][et_pb_row custom_padding=\"27px|0px|31px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Barker-Plaza-Entrance-800x534.jpg\" align=\"center\" _builder_version=\"3.0.106\" custom_margin=\"||25px|\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-13-of-47-800x535.jpg\" align=\"center\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533.jpg\" align=\"center\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1a1a1a\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.93\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0|0px|23px|0px\" custom_margin=\"||50px|\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/11-Walker-Street-HI-RES-1024x523.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"0px|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]<p><span style=\"color: #ffffff;\">Our portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_margin=\"-50px||-50px|\" custom_padding=\"0|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]<p>Sign up to keep up to date with what\'s happening at Beyond Ink.</p>[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"]<p><em><span style=\"color: #ffffff;\">We promise not to spam!</span></em></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-06-12 11:06:15", "2018-06-12 11:06:15", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("908", "1", "2018-06-30 07:30:22", "2018-06-30 07:30:22", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" background_position_2=\"center\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/contact/\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]<p>As a boutique design and construction company, we\'re big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|14px|0px\"][et_pb_row custom_padding=\"0|0px|27px|0px\" custom_margin=\"-45px|||\" _builder_version=\"3.0.106\" custom_margin_phone=\"-25px|||\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"25px|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2><strong>Commercial Projects. New Homes. Additions.</strong></h2>\n<h3><span style=\"color: #000000;\"><strong>Insightful design. Exemplary construction.</strong></span></h3>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#535353\" admin_label=\"CTA Section\" _builder_version=\"3.0.106\" custom_padding=\"21px||0|\"][et_pb_row custom_padding=\"||25px|\" admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p><span style=\"color: #ffffff;\">• Interior Design</span><br /><span style=\"color: #ffffff;\"> • Landcape Design</span></p>\n<p><span style=\"color: #ffffff;\">We\'re a commercial and residential design and construction company.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p><span style=\"color: #ffffff;\">• Commercial</span><br /><span style=\"color: #ffffff;\"> • Residential</span></p>\n<p><span style=\"color: #ffffff;\">We\'re passionate about innovation to create the best possible space.</span></p>\n<p><span style=\"color: #ffffff;\"> </span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p><span style=\"color: #ffffff;\">• Town Planning</span><br /><span style=\"color: #ffffff;\"> • Cost Control</span></p>\n<p><span style=\"color: #ffffff;\">We\'re committed to quality and value for money, delivering on time and on budget.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"21px||0|\"][et_pb_row custom_padding=\"27px|0px|31px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Barker-Plaza-Entrance-800x534.jpg\" align=\"center\" _builder_version=\"3.0.106\" custom_margin=\"||25px|\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-13-of-47-800x535.jpg\" align=\"center\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533.jpg\" align=\"center\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#535353\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0|0px|23px|0px\" custom_margin=\"||50px|\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/11-Walker-Street-HI-RES-1024x523.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"0px|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]<p><span style=\"color: #ffffff;\">Our portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_margin=\"-50px||-50px|\" custom_padding=\"0|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]<p>Sign up to keep up to date with what\'s happening at Beyond Ink.</p>[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"]<p><em><span style=\"color: #ffffff;\">We promise not to spam!</span></em></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-06-30 07:30:22", "2018-06-30 07:30:22", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("879", "1", "2018-06-12 11:23:03", "2018-06-12 11:23:03", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\" use_custom_width=\"on\" custom_width_px=\"1983px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>About Us</h1>\n<p><span style=\"color: #ffffff;\">We specialise in commercial and residential property design and construction.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Intro Section\" _builder_version=\"3.0.92\" custom_padding=\"16px|0px|0|0px\"][et_pb_row custom_padding=\"25px|0px|0|0px\" admin_label=\"Intro Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>Design innovation.<br />Building Excellence.</h2>\n<p><span style=\"font-size: 18px;\">Established in 2006 by owner John Ashcroft, we\'re known for our progressive and innovative design. We specialise in major regional projects which add value and vibrancy to communities. </span></p>\n<p><span style=\"font-size: 18px;\">Regardless of the size of the project - whether it be a renovation or extension, or a large-scale build; our streamlined budget management system ensures peace of mind for our clients from beginning to end.</span></p>\n<p>Our recent projects include the design of the Wolf Blass Gallery and Museum in Hahndorf’s Main Street; and the redesign of the new world-class Murray Bridge Racing Club.</p>\n<p>Other past projects include landmark destinations such as The Manna Hotel, The Lane Winery, The Haus Restaurant, and Barker Plaza Shopping Centre.</p>[/et_pb_text][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1564px\" custom_padding=\"1px|0px|0|0px\" custom_margin=\"|||\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"828,468,332,199\" gallery_captions=\",,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" hover_overlay_color=\"rgba(255,255,255,0.63)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "closed", "closed", "", "211-revision-v1", "", "", "2018-06-12 11:23:03", "2018-06-12 11:23:03", "", "211", "https://beyondink.alluredigitalmarketing.com.au/211-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("882", "1", "2018-06-12 11:25:31", "2018-06-12 11:25:31", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/North-East-Corner-Dulux-Gunmetal-Kinetic-800x254.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row custom_padding=\"0|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\" custom_margin=\"-25px||-25px|\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Coming Soon</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row _builder_version=\"3.0.106\" custom_padding=\"27px|0px|59px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/murray-bridge-racing-club/\" align=\"center\" _builder_version=\"3.0.106\" max_width=\"60%\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"-50px|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"> </span></p>\n<p><span style=\"font-size: 18px;\">Racing at Gifford Hill - Murray Bridge Racing Club</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Coming Soon", "", "inherit", "closed", "closed", "", "195-revision-v1", "", "", "2018-06-12 11:25:31", "2018-06-12 11:25:31", "", "195", "https://beyondink.alluredigitalmarketing.com.au/195-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("884", "1", "2018-06-12 11:25:57", "2018-06-12 11:25:57", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Racing at Gifford Hill - Murray Bridge Racing Club</h1>\n<p><span style=\"color: #ffffff;\"></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"30px|0px|0|0px\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>We\'re proud to be responsible for the redesign and project management of the new $20 million state-of-the-art Murray Bridge Racing Club at Gifford Hill.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/North-East-Corner-Dulux-Gunmetal-Kinetic-800x254.jpg\" align=\"center\" _builder_version=\"3.0.106\" custom_margin=\"25px|||\"][/et_pb_image][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" align=\"center\" _builder_version=\"3.0.106\" custom_margin=\"||25px|\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>Set to open early 2019, this world-class racetrack development - with function centre, food and beverage outlets, and raceday facilities - is located just an hour\'s drive from Adelaide.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][et_pb_gallery gallery_ids=\"144,200,726,727\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" custom_margin=\"25px|||\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Racing at Gifford Hill - Murray Bridge Racing Club", "", "inherit", "closed", "closed", "", "718-revision-v1", "", "", "2018-06-12 11:25:57", "2018-06-12 11:25:57", "", "718", "https://beyondink.alluredigitalmarketing.com.au/718-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("989", "1", "2018-07-18 09:49:55", "2018-07-18 09:49:55", "", "123 Greenhill Road", "", "inherit", "open", "closed", "", "img_3809", "", "", "2018-07-18 10:06:13", "2018-07-18 10:06:13", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/IMG_3809.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("990", "1", "2018-07-18 09:50:26", "2018-07-18 09:50:26", "", "123 Greenhill Road", "", "inherit", "open", "closed", "", "img_7546", "", "", "2018-07-18 10:06:09", "2018-07-18 10:06:09", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/IMG_7546.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("889", "1", "2018-06-30 07:14:18", "2018-06-30 07:14:18", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1983px\" custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>About Us</h1>\n<p><span style=\"color: #ffffff;\">We specialise in commercial and residential property design and construction.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Intro Section\" _builder_version=\"3.0.92\" custom_padding=\"16px|0px|0|0px\"][et_pb_row custom_padding=\"25px|0px|0|0px\" admin_label=\"Intro Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>Design innovation.<br />Building Excellence.</h2>\n<p><span style=\"font-size: 18px;\">Established in 2006 by owner John Ashcroft, our boutique design and construction company is known for progressive and innovative design. In particular, we specialise in major regional projects which add value and vibrancy to communities. </span></p>\n<p><span style=\"font-size: 18px;\">However, regardless of the size of the project - whether it be a renovation or extension, or a large-scale build; our streamlined budget management system ensures peace of mind for our clients from beginning to end.</span></p>\n<p>Our recent projects include the design of the Wolf Blass Gallery and Museum in Hahndorf’s Main Street; and the redesign of the new world-class Murray Bridge Racing Club.</p>\n<p>Other past projects include landmark destinations such as The Manna Hotel, The Lane Winery, The Haus Restaurant, and Barker Plaza Shopping Centre.</p>[/et_pb_text][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1564px\" custom_padding=\"1px|0px|0|0px\" custom_margin=\"|||\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"828,468,332,199\" gallery_captions=\",,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" hover_overlay_color=\"rgba(255,255,255,0.63)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "closed", "closed", "", "211-revision-v1", "", "", "2018-06-30 07:14:18", "2018-06-30 07:14:18", "", "211", "https://beyondink.alluredigitalmarketing.com.au/211-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("891", "1", "2018-06-30 07:18:48", "2018-06-30 07:18:48", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1983px\" custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>About Us</h1>\n<p><span style=\"color: #ffffff;\">We specialise in commercial and residential property design and construction.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Intro Section\" _builder_version=\"3.0.92\" custom_padding=\"16px|0px|0|0px\"][et_pb_row custom_padding=\"25px|0px|0|0px\" admin_label=\"Intro Row\" _builder_version=\"3.0.106\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1400px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>Design innovation.<br />Building Excellence.</h2>\n<p><span style=\"font-size: 18px;\">Established in 2006 by owner John Ashcroft, our boutique design and construction company is known for progressive and innovative design. In particular, we specialise in major regional projects which add value and vibrancy to communities. </span></p>\n<p><span style=\"font-size: 18px;\">However, regardless of the size of the project - whether it be a renovation or extension, or a large-scale build; our streamlined budget management system ensures peace of mind for our clients from beginning to end.</span></p>\n<p>Our recent projects include the design of the Wolf Blass Gallery and Museum in Hahndorf’s Main Street; and the redesign of the new world-class Murray Bridge Racing Club.</p>\n<p>Other past projects include landmark destinations such as The Manna Hotel, The Lane Winery, The Haus Restaurant, and Barker Plaza Shopping Centre.</p>[/et_pb_text][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1564px\" custom_padding=\"1px|0px|0|0px\" custom_margin=\"|||\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"828,468,332,199\" gallery_captions=\",,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" hover_overlay_color=\"rgba(255,255,255,0.63)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "closed", "closed", "", "211-revision-v1", "", "", "2018-06-30 07:18:48", "2018-06-30 07:18:48", "", "211", "https://beyondink.alluredigitalmarketing.com.au/211-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("900", "1", "2018-06-30 07:23:14", "2018-06-30 07:23:14", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#cccccc\" background_color_gradient_end=\"#9dd00f\" background_color_gradient_direction=\"5deg\" background_color_gradient_end_position=\"64%\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1983px\" custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Contact Us</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Contact Section\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|100px|0px\"][et_pb_row custom_padding=\"28px|0px|27px|0px\" admin_label=\"Message Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" header_font=\"||||||||\" header_text_color=\"#000000\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"left\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>Send Us A Message</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form email=\"admin@beyondink.com.au\" success_message=\"Your message has been sent!\" form_background_color=\"rgba(26,26,26,0.08)\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.106\" title_font=\"||||||||\" form_field_font=\"Muli|600|||||||\" form_field_font_size=\"16px\" form_field_text_color=\"rgba(0,0,0,0.6)\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#000000\" button_border_width=\"10px\" button_border_color=\"#000000\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.0.92\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact", "", "inherit", "closed", "closed", "", "102-revision-v1", "", "", "2018-06-30 07:23:14", "2018-06-30 07:23:14", "", "102", "https://beyondink.alluredigitalmarketing.com.au/102-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("901", "1", "2018-06-30 07:23:52", "2018-06-30 07:23:52", "[et_pb_row use_custom_width=\"on\" custom_width_px=\"1564px\" custom_padding=\"1px|0px|0|0px\" custom_margin=\"|||\" _builder_version=\"3.0.106\" template_type=\"row\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"828,468,332,199\" gallery_captions=\",,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" hover_overlay_color=\"rgba(255,255,255,0.63)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row]", "Image Row", "", "publish", "closed", "closed", "", "image-row", "", "", "2018-06-30 07:23:52", "2018-06-30 07:23:52", "", "0", "https://beyondink.alluredigitalmarketing.com.au/et_pb_layout/image-row/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("897", "1", "2018-06-30 07:22:19", "2018-06-30 07:22:19", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"5deg\" custom_padding=\"2.2%|0px|53px|0px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#cccccc\" background_color_gradient_end=\"#9dd00f\" background_color_gradient_end_position=\"64%\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1983px\" custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>About Us</h1>\n<p><span style=\"color: #ffffff;\">We specialise in commercial and residential property design and construction.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Intro Section\" _builder_version=\"3.0.92\" custom_padding=\"16px|0px|0|0px\"][et_pb_row custom_padding=\"25px|0px|0|0px\" admin_label=\"Intro Row\" _builder_version=\"3.0.106\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1400px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>Design innovation.<br />Building Excellence.</h2>\n<p><span style=\"font-size: 18px;\">Established in 2006 by owner John Ashcroft, our boutique design and construction company is known for progressive and innovative design. In particular, we specialise in major regional projects which add value and vibrancy to communities. </span></p>\n<p><span style=\"font-size: 18px;\">However, regardless of the size of the project - whether it be a renovation or extension, or a large-scale build; our streamlined budget management system ensures peace of mind for our clients from beginning to end.</span></p>\n<p>Our recent projects include the design of the Wolf Blass Gallery and Museum in Hahndorf’s Main Street; and the redesign of the new world-class Murray Bridge Racing Club.</p>\n<p>Other past projects include landmark destinations such as The Manna Hotel, The Lane Winery, The Haus Restaurant, and Barker Plaza Shopping Centre.</p>[/et_pb_text][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1564px\" custom_padding=\"1px|0px|0|0px\" custom_margin=\"|||\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"828,468,332,199\" gallery_captions=\",,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" hover_overlay_color=\"rgba(255,255,255,0.63)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "closed", "closed", "", "211-revision-v1", "", "", "2018-06-30 07:22:19", "2018-06-30 07:22:19", "", "211", "https://beyondink.alluredigitalmarketing.com.au/211-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("895", "1", "2018-06-30 07:21:52", "2018-06-30 07:21:52", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"5deg\" custom_padding=\"2.2%|0px|53px|0px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#cccccc\" background_color_gradient_end=\"#9dd00f\" background_color_gradient_end_position=\"98%\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1983px\" custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>About Us</h1>\n<p><span style=\"color: #ffffff;\">We specialise in commercial and residential property design and construction.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Intro Section\" _builder_version=\"3.0.92\" custom_padding=\"16px|0px|0|0px\"][et_pb_row custom_padding=\"25px|0px|0|0px\" admin_label=\"Intro Row\" _builder_version=\"3.0.106\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1400px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>Design innovation.<br />Building Excellence.</h2>\n<p><span style=\"font-size: 18px;\">Established in 2006 by owner John Ashcroft, our boutique design and construction company is known for progressive and innovative design. In particular, we specialise in major regional projects which add value and vibrancy to communities. </span></p>\n<p><span style=\"font-size: 18px;\">However, regardless of the size of the project - whether it be a renovation or extension, or a large-scale build; our streamlined budget management system ensures peace of mind for our clients from beginning to end.</span></p>\n<p>Our recent projects include the design of the Wolf Blass Gallery and Museum in Hahndorf’s Main Street; and the redesign of the new world-class Murray Bridge Racing Club.</p>\n<p>Other past projects include landmark destinations such as The Manna Hotel, The Lane Winery, The Haus Restaurant, and Barker Plaza Shopping Centre.</p>[/et_pb_text][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1564px\" custom_padding=\"1px|0px|0|0px\" custom_margin=\"|||\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"828,468,332,199\" gallery_captions=\",,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" hover_overlay_color=\"rgba(255,255,255,0.63)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "closed", "closed", "", "211-revision-v1", "", "", "2018-06-30 07:21:52", "2018-06-30 07:21:52", "", "211", "https://beyondink.alluredigitalmarketing.com.au/211-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("893", "1", "2018-06-30 07:20:44", "2018-06-30 07:20:44", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"191deg\" custom_padding=\"2.2%|0px|53px|0px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#cccccc\" background_color_gradient_end=\"#9dd00f\" background_color_gradient_start_position=\"6%\" background_color_gradient_end_position=\"98%\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1983px\" custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>About Us</h1>\n<p><span style=\"color: #ffffff;\">We specialise in commercial and residential property design and construction.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Intro Section\" _builder_version=\"3.0.92\" custom_padding=\"16px|0px|0|0px\"][et_pb_row custom_padding=\"25px|0px|0|0px\" admin_label=\"Intro Row\" _builder_version=\"3.0.106\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1400px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>Design innovation.<br />Building Excellence.</h2>\n<p><span style=\"font-size: 18px;\">Established in 2006 by owner John Ashcroft, our boutique design and construction company is known for progressive and innovative design. In particular, we specialise in major regional projects which add value and vibrancy to communities. </span></p>\n<p><span style=\"font-size: 18px;\">However, regardless of the size of the project - whether it be a renovation or extension, or a large-scale build; our streamlined budget management system ensures peace of mind for our clients from beginning to end.</span></p>\n<p>Our recent projects include the design of the Wolf Blass Gallery and Museum in Hahndorf’s Main Street; and the redesign of the new world-class Murray Bridge Racing Club.</p>\n<p>Other past projects include landmark destinations such as The Manna Hotel, The Lane Winery, The Haus Restaurant, and Barker Plaza Shopping Centre.</p>[/et_pb_text][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1564px\" custom_padding=\"1px|0px|0|0px\" custom_margin=\"|||\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"828,468,332,199\" gallery_captions=\",,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" hover_overlay_color=\"rgba(255,255,255,0.63)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "closed", "closed", "", "211-revision-v1", "", "", "2018-06-30 07:20:44", "2018-06-30 07:20:44", "", "211", "https://beyondink.alluredigitalmarketing.com.au/211-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("899", "1", "2018-06-30 07:22:36", "2018-06-30 07:22:36", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"5deg\" custom_padding=\"2.2%|0px|53px|0px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#cccccc\" background_color_gradient_end=\"#9dd00f\" background_color_gradient_end_position=\"64%\" template_type=\"section\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1983px\" custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>About Us</h1>\n<p><span style=\"color: #ffffff;\">We specialise in commercial and residential property design and construction.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Basic Page Header", "", "publish", "closed", "closed", "", "basic-page-header", "", "", "2018-06-30 07:22:36", "2018-06-30 07:22:36", "", "0", "https://beyondink.alluredigitalmarketing.com.au/et_pb_layout/basic-page-header/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("903", "1", "2018-06-30 07:26:07", "2018-06-30 07:26:07", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#cccccc\" background_color_gradient_end=\"#9dd00f\" background_color_gradient_direction=\"5deg\" background_color_gradient_end_position=\"64%\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1983px\" custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Contact Us</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Contact Section\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|100px|0px\"][et_pb_row custom_padding=\"28px|0px|27px|0px\" admin_label=\"Message Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" header_font=\"||||||||\" header_text_color=\"#000000\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"left\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>Send Us A Message</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form email=\"admin@beyondink.com.au\" success_message=\"Your message has been sent!\" form_background_color=\"rgba(26,26,26,0.08)\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.106\" title_font=\"||||||||\" form_field_font=\"Muli|600|||||||\" form_field_font_size=\"16px\" form_field_text_color=\"rgba(0,0,0,0.6)\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#000000\" button_border_width=\"10px\" button_border_color=\"#000000\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.0.92\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\" custom_padding=\"0|0px|0|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1564px\" custom_padding=\"1px|0px|0|0px\" custom_margin=\"|||\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"302,252,182,333\" gallery_captions=\",,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" hover_overlay_color=\"rgba(255,255,255,0.63)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact", "", "inherit", "closed", "closed", "", "102-revision-v1", "", "", "2018-06-30 07:26:07", "2018-06-30 07:26:07", "", "102", "https://beyondink.alluredigitalmarketing.com.au/102-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("941", "1", "2018-07-08 09:59:25", "2018-07-08 09:59:25", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#cccccc\" background_color_gradient_end=\"#9dd00f\" background_color_gradient_direction=\"5deg\" background_color_gradient_end_position=\"64%\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1983px\" custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Our Projects</h1>\n<p><span style=\"color: #ffffff;\">From major regional developments, to grand home designs - you can feel at ease with our beginning-to-end design, construction, and project management expertise.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_position=\"top_center\" custom_padding=\"0|0px|26px|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.106\"][/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_2=\"#f3f3f3\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Front-Entry-Portal-Dulux-Gunmetal-Kinetic-2.jpg\" show_bottom_space=\"off\" _builder_version=\"3.0.106\" custom_padding=\"|||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Commercial Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/\" button_text=\"Discover Commercial Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]<p><span>Our commercial portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#f3f3f3\" background_color_2=\"#f3f3f3\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Residential Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/residential/\" button_text=\"Discover Residential Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]<p>As residential builders in Adelaide, we\'ve designed and built dozens of beautiful homes in South Australia. With our expertise and exemplary construction experience, we can build you a dream home beyond your expectations.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_2=\"#f3f3f3\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-2.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Renovations\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/restorations/\" button_text=\"Discover Renovation Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]<p>No home renovation is too difficult for our team. We can completely transform your existing home to your ideal specifications, whilst ensuring your project is on time and on budget.</p>[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#f3f3f3\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Coming Soon\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/coming-soon/\" button_text=\"Discover Work In Progress\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]<p>Our team is always working on a number of commercial and residential projects in South Australia and beyond.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/North-East-Corner-Dulux-Gunmetal-Kinetic-Sm.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "Projects", "", "inherit", "closed", "closed", "", "120-revision-v1", "", "", "2018-07-08 09:59:25", "2018-07-08 09:59:25", "", "120", "https://beyondink.alluredigitalmarketing.com.au/120-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("907", "1", "2018-06-30 07:28:58", "2018-06-30 07:28:58", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#cccccc\" background_color_gradient_end=\"#9dd00f\" background_color_gradient_direction=\"5deg\" background_color_gradient_end_position=\"64%\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1983px\" custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Our Projects</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_position=\"top_center\" custom_padding=\"0|0px|26px|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.106\"][/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"25px|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>Our projects range from major regional developments, to grand home designs. You can feel at ease with our beginning-to-end design, construction, and project management expertise.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_2=\"#f3f3f3\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Front-Entry-Portal-Dulux-Gunmetal-Kinetic-2.jpg\" show_bottom_space=\"off\" _builder_version=\"3.0.106\" custom_padding=\"|||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Commercial Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/\" button_text=\"Discover Commercial Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]<p><span>Our commercial portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#f3f3f3\" background_color_2=\"#f3f3f3\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Residential Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/residential/\" button_text=\"Discover Residential Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]<p>As residential builders in Adelaide, we\'ve designed and built dozens of beautiful homes in South Australia. With our expertise and exemplary construction experience, we can build you a dream home beyond your expectations.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_2=\"#f3f3f3\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-2.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Renovations\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/restorations/\" button_text=\"Discover Renovation Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]<p>No home renovation is too difficult for our team. We can completely transform your existing home to your ideal specifications, whilst ensuring your project is on time and on budget.</p>[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#f3f3f3\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Coming Soon\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/coming-soon/\" button_text=\"Discover Work In Progress\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]<p>Our team is always working on a number of commercial and residential projects in South Australia and beyond.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/North-East-Corner-Dulux-Gunmetal-Kinetic-Sm.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "Projects", "", "inherit", "closed", "closed", "", "120-revision-v1", "", "", "2018-06-30 07:28:58", "2018-06-30 07:28:58", "", "120", "https://beyondink.alluredigitalmarketing.com.au/120-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("949", "1", "2018-07-08 10:11:07", "2018-07-08 10:11:07", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"194deg\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705-e1525939024788.jpg\" custom_padding=\"9.8%|0px|123px|0px\"][et_pb_row custom_padding=\"0|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Commercial Projects</h1>\n<p><span style=\"color: #ffffff;\">We specialise in major regional developments - from design and construction to entire management of your project.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"50px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Lane-Winery.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-lane-vineyard/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">The Lane Winery</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Barker-Plaza-Entrance-800x534.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/barker-plaza/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Barker Plaza Shopping Centre</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Hahndorf.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-haus-cafebarkitchen/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">The Haus Cafe+Bar+Kitchen</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Studio-Apartments.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-manna-apartments-2/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">The Haus Studio Apartments</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/K1-Winery-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/k1-winery/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">K1 Winery</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/55708_165645590125507_7049646_o.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-manna-motel-of-hahndorf/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">The Manna Motel of Hahndorf</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Inavogue-Showroom-2-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/inavogue-showroom/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Inavogue Showroom</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Pulteney-Plaza-Apartments-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/pulteney-plaza-adelaide/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Pulteney Plaza Apartments</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|27px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Rivercorp-Monarto-Apple-Processing-Plant.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/rivercorp-monarto-apple-processing-facility/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Rivercorp Monarto Apple Processing Facility</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Elders-Strathalbyn-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/elders-strathalbyn/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Elders Strathalbyn</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Commercial", "", "inherit", "closed", "closed", "", "175-revision-v1", "", "", "2018-07-08 10:11:07", "2018-07-08 10:11:07", "", "175", "https://beyondink.alluredigitalmarketing.com.au/175-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("906", "1", "2018-06-30 07:27:53", "2018-06-30 07:27:53", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.35)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"194deg\" background_color_gradient_end_position=\"65%\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705-e1525939024788.jpg\" custom_padding=\"9.8%|0px|123px|0px\"][et_pb_row custom_padding=\"21px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Commercial Projects</h1>\n<p><span style=\"color: #ffffff;\">We specialise in major regional developments - from design and construction to entire management of your project.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"50px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Lane-Winery.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-lane-vineyard/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">The Lane Winery</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Barker-Plaza-Entrance-800x534.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/barker-plaza/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Barker Plaza Shopping Centre</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Hahndorf.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-haus-cafebarkitchen/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">The Haus Cafe+Bar+Kitchen</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Studio-Apartments.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-manna-apartments-2/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">The Haus Studio Apartments</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/K1-Winery-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/k1-winery/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">K1 Winery</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/55708_165645590125507_7049646_o.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-manna-motel-of-hahndorf/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">The Manna Motel of Hahndorf</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Inavogue-Showroom-2-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/inavogue-showroom/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Inavogue Showroom</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Pulteney-Plaza-Apartments-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/pulteney-plaza-adelaide/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Pulteney Plaza Apartments</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|27px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Rivercorp-Monarto-Apple-Processing-Plant.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/rivercorp-monarto-apple-processing-facility/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Rivercorp Monarto Apple Processing Facility</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Elders-Strathalbyn-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/elders-strathalbyn/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Elders Strathalbyn</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Commercial", "", "inherit", "closed", "closed", "", "175-revision-v1", "", "", "2018-06-30 07:27:53", "2018-06-30 07:27:53", "", "175", "https://beyondink.alluredigitalmarketing.com.au/175-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("914", "1", "2018-07-08 09:04:33", "2018-07-08 09:04:33", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" background_position_2=\"center\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/contact/\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]<p>A boutique design and construction company big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.</p>\n[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|14px|0px\"][et_pb_row custom_padding=\"46px|0px|72px|0px\" custom_margin=\"-45px|||\" _builder_version=\"3.0.106\" custom_margin_phone=\"-25px|||\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"25px|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2><strong>Commercial Projects. New Homes. Additions.</strong></h2>\n<h3><span style=\"color: #000000;\"><strong>Insightful design. Exemplary construction.</strong></span></h3>\n<p>Having a team of talented designers and project managers allows us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#535353\" admin_label=\"CTA Section\" _builder_version=\"3.0.106\" custom_padding=\"21px||0|\"][et_pb_row custom_padding=\"55px||25px|\" admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p><span style=\"color: #ffffff;\">• Interior Design</span><br /><span style=\"color: #ffffff;\"> • Landcape Design</span></p>\n<p><span style=\"color: #ffffff;\">We\'re a commercial and residential design and construction company.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p><span style=\"color: #ffffff;\">• Commercial</span><br /><span style=\"color: #ffffff;\"> • Residential</span></p>\n<p><span style=\"color: #ffffff;\">We\'re passionate about innovation to create the best possible space.</span></p>\n<p><span style=\"color: #ffffff;\"> </span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p><span style=\"color: #ffffff;\">• Town Planning</span><br /><span style=\"color: #ffffff;\"> • Cost Control</span></p>\n<p><span style=\"color: #ffffff;\">We\'re committed to quality and value for money, delivering on time and on budget.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"41px||0|\"][et_pb_row custom_padding=\"27px|0px|62px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Barker-Plaza-Entrance-800x534.jpg\" align=\"center\" _builder_version=\"3.0.106\" custom_margin=\"||25px|\" show_in_lightbox=\"on\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-13-of-47-800x535.jpg\" align=\"center\" _builder_version=\"3.0.106\" show_in_lightbox=\"on\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533.jpg\" align=\"center\" _builder_version=\"3.0.106\" show_in_lightbox=\"on\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#535353\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0|0px|23px|0px\" custom_margin=\"||50px|\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/11-Walker-Street-HI-RES-1024x523.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"0px|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]<p><span style=\"color: #ffffff;\">Our portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_margin=\"-50px||-50px|\" custom_padding=\"0|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]<p>Sign up to keep up to date with what\'s happening at Beyond Ink.</p>[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-07-08 09:04:33", "2018-07-08 09:04:33", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("910", "1", "2018-06-30 07:31:07", "2018-06-30 07:31:07", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" background_position_2=\"center\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/contact/\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]<p>As a boutique design and construction company, we\'re big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|14px|0px\"][et_pb_row custom_padding=\"46px|0px|72px|0px\" custom_margin=\"-45px|||\" _builder_version=\"3.0.106\" custom_margin_phone=\"-25px|||\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"25px|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2><strong>Commercial Projects. New Homes. Additions.</strong></h2>\n<h3><span style=\"color: #000000;\"><strong>Insightful design. Exemplary construction.</strong></span></h3>\n<p>Our team of talented designers and project managers allow us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#535353\" admin_label=\"CTA Section\" _builder_version=\"3.0.106\" custom_padding=\"21px||0|\"][et_pb_row custom_padding=\"55px||25px|\" admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p><span style=\"color: #ffffff;\">• Interior Design</span><br /><span style=\"color: #ffffff;\"> • Landcape Design</span></p>\n<p><span style=\"color: #ffffff;\">We\'re a commercial and residential design and construction company.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p><span style=\"color: #ffffff;\">• Commercial</span><br /><span style=\"color: #ffffff;\"> • Residential</span></p>\n<p><span style=\"color: #ffffff;\">We\'re passionate about innovation to create the best possible space.</span></p>\n<p><span style=\"color: #ffffff;\"> </span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p><span style=\"color: #ffffff;\">• Town Planning</span><br /><span style=\"color: #ffffff;\"> • Cost Control</span></p>\n<p><span style=\"color: #ffffff;\">We\'re committed to quality and value for money, delivering on time and on budget.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"41px||0|\"][et_pb_row custom_padding=\"27px|0px|62px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Barker-Plaza-Entrance-800x534.jpg\" align=\"center\" _builder_version=\"3.0.106\" custom_margin=\"||25px|\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-13-of-47-800x535.jpg\" align=\"center\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533.jpg\" align=\"center\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#535353\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0|0px|23px|0px\" custom_margin=\"||50px|\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/11-Walker-Street-HI-RES-1024x523.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"0px|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]<p><span style=\"color: #ffffff;\">Our portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_margin=\"-50px||-50px|\" custom_padding=\"0|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]<p>Sign up to keep up to date with what\'s happening at Beyond Ink.</p>[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"]<p><em><span style=\"color: #ffffff;\">We promise not to spam!</span></em></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-06-30 07:31:07", "2018-06-30 07:31:07", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("915", "1", "2018-07-08 09:06:53", "2018-07-08 09:06:53", "", "Murray Bridge Racing Club", "", "inherit", "open", "closed", "", "north-east-corner-dulux-gunmetal-kinetic-1280x406", "", "", "2018-07-08 09:07:00", "2018-07-08 09:07:00", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/North-East-Corner-Dulux-Gunmetal-Kinetic-1280x406.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("924", "1", "2018-07-08 09:28:03", "2018-07-08 09:28:03", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#cccccc\" background_color_gradient_end=\"#9dd00f\" background_color_gradient_direction=\"5deg\" background_color_gradient_end_position=\"64%\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/North-East-Corner-Dulux-Gunmetal-Kinetic-1280x406.jpg\" custom_padding=\"2.2%|0px|94px|0px\" template_type=\"section\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1983px\" custom_padding=\"76px|0px|12px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>About Us</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Page Header", "", "publish", "closed", "closed", "", "page-header", "", "", "2018-07-08 09:28:03", "2018-07-08 09:28:03", "", "0", "https://beyondink.alluredigitalmarketing.com.au/et_pb_layout/page-header/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("917", "1", "2018-07-08 09:20:06", "2018-07-08 09:20:06", "", "Barker Plaza Shopping Centre", "", "inherit", "open", "closed", "", "kensingtons-garden-residence-7", "", "", "2018-07-08 09:20:42", "2018-07-08 09:20:42", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Kensingtons-Garden-Residence.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("918", "1", "2018-07-08 09:22:06", "2018-07-08 09:22:06", "", "Hahndorf Academy", "", "inherit", "open", "closed", "", "hahndorf-academy-2", "", "", "2018-07-08 09:22:06", "2018-07-08 09:22:06", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Hahndorf-Academy.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("919", "1", "2018-07-08 09:23:53", "2018-07-08 09:23:53", "", "Murray Bridge Racing Club", "", "inherit", "open", "closed", "", "murray-bridge-racing-club-3", "", "", "2018-07-08 09:23:53", "2018-07-08 09:23:53", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Murray-Bridge-Racing-Club.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("937", "1", "2018-07-08 09:38:38", "2018-07-08 09:38:38", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"5deg\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/North-East-Corner-Dulux-Gunmetal-Kinetic-1280x406.jpg\" custom_padding=\"2.2%|0px|94px|0px\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1983px\" custom_padding=\"76px|0px|12px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>About Us</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Intro Section\" _builder_version=\"3.0.92\" custom_padding=\"16px|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"25px|0px|0|0px\" admin_label=\"Intro Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1400px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h1><strong>Design innovation. Building Excellence.</strong></h1>\n<p><span style=\"font-size: 18px;\">Established in 2006 by owner John Ashcroft, we\'re a boutique design and construction company known for progressive and innovative design. </span></p>\n<p><span style=\"font-size: 18px;\">Our specialty is creating major regional projects which add value and vibrancy to communities. </span></p>\n<p><span style=\"font-size: 18px;\">However, regardless of the size of the project - whether it be a renovation or extension, or a large-scale build - our streamlined budget management system ensures peace of mind for our clients from beginning to end.</span></p>\n<p>Our recent projects include the design of the Wolf Blass Gallery and Museum in Hahndorf’s Main Street; and the redesign of the new world-class Murray Bridge Racing Club.</p>\n<p>Other past projects include landmark destinations such as The Manna Hotel, The Lane Winery, The Haus Restaurant, and Barker Plaza Shopping Centre.</p>[/et_pb_text][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Commercial Projects\" url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Kensingtons-Garden-Residence.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Residential Projects\" url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/https://beyondink.alluredigitalmarketing.com.au/residential/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Renovations\" url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/https://beyondink.alluredigitalmarketing.com.au/residential/https://beyondink.alluredigitalmarketing.com.au/restorations/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Hahndorf-Academy.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Coming Soon\" url=\"https://beyondink.alluredigitalmarketing.com.au/coming-soon/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Murray-Bridge-Racing-Club.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "closed", "closed", "", "211-revision-v1", "", "", "2018-07-08 09:38:38", "2018-07-08 09:38:38", "", "211", "https://beyondink.alluredigitalmarketing.com.au/211-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("923", "1", "2018-07-08 09:26:08", "2018-07-08 09:26:08", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#cccccc\" background_color_gradient_end=\"#9dd00f\" background_color_gradient_direction=\"5deg\" background_color_gradient_end_position=\"64%\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/North-East-Corner-Dulux-Gunmetal-Kinetic-1280x406.jpg\" custom_padding=\"2.2%|0px|94px|0px\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1983px\" custom_padding=\"76px|0px|12px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>About Us</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Intro Section\" _builder_version=\"3.0.92\" custom_padding=\"16px|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"25px|0px|0|0px\" admin_label=\"Intro Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1400px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h1><strong>Design innovation. Building Excellence.</strong></h1>\n<p><span style=\"font-size: 18px;\">Established in 2006 by owner John Ashcroft, we\'re a boutique design and construction company known for progressive and innovative design. </span></p>\n<p><span style=\"font-size: 18px;\">Our specialty is creating major regional projects which add value and vibrancy to communities. </span></p>\n<p><span style=\"font-size: 18px;\">However, regardless of the size of the project - whether it be a renovation or extension, or a large-scale build - our streamlined budget management system ensures peace of mind for our clients from beginning to end.</span></p>\n<p>Our recent projects include the design of the Wolf Blass Gallery and Museum in Hahndorf’s Main Street; and the redesign of the new world-class Murray Bridge Racing Club.</p>\n<p>Other past projects include landmark destinations such as The Manna Hotel, The Lane Winery, The Haus Restaurant, and Barker Plaza Shopping Centre.</p>[/et_pb_text][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Commercial Projects\" url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Kensingtons-Garden-Residence.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Residential Projects\" url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/https://beyondink.alluredigitalmarketing.com.au/residential/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Renovations\" url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/https://beyondink.alluredigitalmarketing.com.au/residential/https://beyondink.alluredigitalmarketing.com.au/restorations/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Hahndorf-Academy.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Coming Soon\" url=\"https://beyondink.alluredigitalmarketing.com.au/coming-soon/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Murray-Bridge-Racing-Club.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "closed", "closed", "", "211-revision-v1", "", "", "2018-07-08 09:26:08", "2018-07-08 09:26:08", "", "211", "https://beyondink.alluredigitalmarketing.com.au/211-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("920", "1", "2018-07-08 09:24:22", "2018-07-08 09:24:22", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#cccccc\" background_color_gradient_end=\"#9dd00f\" background_color_gradient_direction=\"5deg\" background_color_gradient_end_position=\"64%\" custom_padding=\"2.2%|0px|53px|0px\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/North-East-Corner-Dulux-Gunmetal-Kinetic-1280x406.jpg\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1983px\" custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>About Us</h1>\n<p><span style=\"color: #ffffff;\">We specialise in commercial and residential property design and construction.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Intro Section\" _builder_version=\"3.0.92\" custom_padding=\"16px|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"25px|0px|0|0px\" admin_label=\"Intro Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1400px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>Design innovation.<br />Building Excellence.</h2>\n<p><span style=\"font-size: 18px;\">Established in 2006 by owner John Ashcroft, we\'re a boutique design and construction company known for progressive and innovative design. </span></p>\n<p><span style=\"font-size: 18px;\">Our specialty is creating major regional projects which add value and vibrancy to communities. </span></p>\n<p><span style=\"font-size: 18px;\">However, regardless of the size of the project - whether it be a renovation or extension, or a large-scale build - our streamlined budget management system ensures peace of mind for our clients from beginning to end.</span></p>\n<p>Our recent projects include the design of the Wolf Blass Gallery and Museum in Hahndorf’s Main Street; and the redesign of the new world-class Murray Bridge Racing Club.</p>\n<p>Other past projects include landmark destinations such as The Manna Hotel, The Lane Winery, The Haus Restaurant, and Barker Plaza Shopping Centre.</p>[/et_pb_text][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Commercial Projects\" url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Kensingtons-Garden-Residence.jpg\" _builder_version=\"3.0.106\" text_orientation=\"center\" box_shadow_style_image=\"preset3\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Residential Projects\" url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/https://beyondink.alluredigitalmarketing.com.au/residential/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence.jpg\" _builder_version=\"3.0.106\" text_orientation=\"center\" box_shadow_style_image=\"preset3\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Renovations\" url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/https://beyondink.alluredigitalmarketing.com.au/residential/https://beyondink.alluredigitalmarketing.com.au/restorations/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Hahndorf-Academy.jpg\" _builder_version=\"3.0.106\" text_orientation=\"center\" box_shadow_style_image=\"preset3\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Coming Soon\" url=\"https://beyondink.alluredigitalmarketing.com.au/coming-soon/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Murray-Bridge-Racing-Club.jpg\" _builder_version=\"3.0.106\" text_orientation=\"center\" box_shadow_style_image=\"preset3\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "closed", "closed", "", "211-revision-v1", "", "", "2018-07-08 09:24:22", "2018-07-08 09:24:22", "", "211", "https://beyondink.alluredigitalmarketing.com.au/211-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("922", "1", "2018-07-08 09:24:48", "2018-07-08 09:24:48", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#cccccc\" background_color_gradient_end=\"#9dd00f\" background_color_gradient_direction=\"5deg\" background_color_gradient_end_position=\"64%\" custom_padding=\"2.2%|0px|53px|0px\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/North-East-Corner-Dulux-Gunmetal-Kinetic-1280x406.jpg\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1983px\" custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>About Us</h1>\n<p><span style=\"color: #ffffff;\">We specialise in commercial and residential property design and construction.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Intro Section\" _builder_version=\"3.0.92\" custom_padding=\"16px|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"25px|0px|0|0px\" admin_label=\"Intro Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1400px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h1>Design innovation. Building Excellence.</h1>\n<p><span style=\"font-size: 18px;\">Established in 2006 by owner John Ashcroft, we\'re a boutique design and construction company known for progressive and innovative design. </span></p>\n<p><span style=\"font-size: 18px;\">Our specialty is creating major regional projects which add value and vibrancy to communities. </span></p>\n<p><span style=\"font-size: 18px;\">However, regardless of the size of the project - whether it be a renovation or extension, or a large-scale build - our streamlined budget management system ensures peace of mind for our clients from beginning to end.</span></p>\n<p>Our recent projects include the design of the Wolf Blass Gallery and Museum in Hahndorf’s Main Street; and the redesign of the new world-class Murray Bridge Racing Club.</p>\n<p>Other past projects include landmark destinations such as The Manna Hotel, The Lane Winery, The Haus Restaurant, and Barker Plaza Shopping Centre.</p>[/et_pb_text][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Commercial Projects\" url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Kensingtons-Garden-Residence.jpg\" _builder_version=\"3.0.106\" text_orientation=\"center\" box_shadow_style_image=\"preset3\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Residential Projects\" url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/https://beyondink.alluredigitalmarketing.com.au/residential/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence.jpg\" _builder_version=\"3.0.106\" text_orientation=\"center\" box_shadow_style_image=\"preset3\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Renovations\" url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/https://beyondink.alluredigitalmarketing.com.au/residential/https://beyondink.alluredigitalmarketing.com.au/restorations/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Hahndorf-Academy.jpg\" _builder_version=\"3.0.106\" text_orientation=\"center\" box_shadow_style_image=\"preset3\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Coming Soon\" url=\"https://beyondink.alluredigitalmarketing.com.au/coming-soon/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Murray-Bridge-Racing-Club.jpg\" _builder_version=\"3.0.106\" text_orientation=\"center\" box_shadow_style_image=\"preset3\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "closed", "closed", "", "211-revision-v1", "", "", "2018-07-08 09:24:48", "2018-07-08 09:24:48", "", "211", "https://beyondink.alluredigitalmarketing.com.au/211-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("925", "1", "2018-07-08 09:28:43", "2018-07-08 09:28:43", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#cccccc\" background_color_gradient_end=\"#9dd00f\" background_color_gradient_direction=\"5deg\" background_color_gradient_end_position=\"64%\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/North-East-Corner-Dulux-Gunmetal-Kinetic-1280x406.jpg\" custom_padding=\"2.2%|0px|94px|0px\" template_type=\"section\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1983px\" custom_padding=\"76px|0px|12px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>About Us</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Page Header 8.7.18", "", "publish", "closed", "closed", "", "page-header-8-7-18", "", "", "2018-07-08 09:28:43", "2018-07-08 09:28:43", "", "0", "https://beyondink.alluredigitalmarketing.com.au/et_pb_layout/page-header-8-7-18/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("930", "1", "2018-07-08 09:36:22", "2018-07-08 09:36:22", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#cccccc\" background_color_gradient_end=\"#9dd00f\" background_color_gradient_direction=\"5deg\" background_color_gradient_end_position=\"64%\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705-e1525939024788.jpg\" custom_padding=\"2.2%|0px|94px|0px\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1983px\" custom_padding=\"76px|0px|12px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Contact Us</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Contact Section\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|100px|0\"][et_pb_row custom_padding=\"28px|0px|27px|0px\" admin_label=\"Message Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form email=\"admin@beyondink.com.au\" success_message=\"Your message has been sent!\" form_background_color=\"rgba(26,26,26,0.08)\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.106\" title_font=\"||||||||\" form_field_font=\"Muli|600|||||||\" form_field_font_size=\"16px\" form_field_text_color=\"rgba(0,0,0,0.6)\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#000000\" button_border_width=\"10px\" button_border_color=\"#000000\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.0.92\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.106\"]<h4 style=\"text-align: center;\">Beyond Ink</h4>\n<p style=\"text-align: center;\">Address: 75 Mount Barker Road Hahndorf SA 5245<br /> Phone: 08 8388 1179<br /> Email: <a href=\"mailto:admin@beyondink.com.au\">admin@beyondink.com.au</a></p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\"></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1564px\" custom_padding=\"1px|0px|0|0px\" custom_margin=\"|||\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"302,252,182,333\" gallery_captions=\",,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" hover_overlay_color=\"rgba(255,255,255,0.63)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact", "", "inherit", "closed", "closed", "", "102-revision-v1", "", "", "2018-07-08 09:36:22", "2018-07-08 09:36:22", "", "102", "https://beyondink.alluredigitalmarketing.com.au/102-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("927", "1", "2018-07-08 09:30:34", "2018-07-08 09:30:34", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#cccccc\" background_color_gradient_end=\"#9dd00f\" background_color_gradient_direction=\"5deg\" background_color_gradient_end_position=\"64%\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705-e1525939024788.jpg\" custom_padding=\"2.2%|0px|94px|0px\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1983px\" custom_padding=\"76px|0px|12px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Contact Us</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Contact Section\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|100px|0px\"][et_pb_row custom_padding=\"28px|0px|27px|0px\" admin_label=\"Message Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" header_font=\"||||||||\" header_text_color=\"#000000\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"left\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" max_width_last_edited=\"off|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h2>Send Us A Message</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form email=\"admin@beyondink.com.au\" success_message=\"Your message has been sent!\" form_background_color=\"rgba(26,26,26,0.08)\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.106\" title_font=\"||||||||\" form_field_font=\"Muli|600|||||||\" form_field_font_size=\"16px\" form_field_text_color=\"rgba(0,0,0,0.6)\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#000000\" button_border_width=\"10px\" button_border_color=\"#000000\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.0.92\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1564px\" custom_padding=\"1px|0px|0|0px\" custom_margin=\"|||\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"302,252,182,333\" gallery_captions=\",,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" hover_overlay_color=\"rgba(255,255,255,0.63)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact", "", "inherit", "closed", "closed", "", "102-revision-v1", "", "", "2018-07-08 09:30:34", "2018-07-08 09:30:34", "", "102", "https://beyondink.alluredigitalmarketing.com.au/102-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("935", "1", "2018-07-08 09:38:18", "2018-07-08 09:38:18", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"5deg\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705-e1525939024788.jpg\" custom_padding=\"2.2%|0px|94px|0px\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1983px\" custom_padding=\"76px|0px|12px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Contact Us</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Contact Section\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|100px|0\"][et_pb_row custom_padding=\"28px|0px|27px|0px\" admin_label=\"Message Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form email=\"admin@beyondink.com.au\" success_message=\"Your message has been sent!\" form_background_color=\"rgba(26,26,26,0.08)\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.106\" title_font=\"||||||||\" form_field_font=\"Muli|600|||||||\" form_field_font_size=\"16px\" form_field_text_color=\"rgba(0,0,0,0.6)\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#000000\" button_border_width=\"10px\" button_border_color=\"#000000\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.0.92\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.106\"]<h4 style=\"text-align: center;\">Beyond Ink</h4>\n<p style=\"text-align: center;\"><strong>Address:</strong> 75 Mount Barker Road Hahndorf SA 5245<br /> <strong>Phone:</strong> 08 8388 1179<br /> <strong>Email: </strong><a href=\"mailto:admin@beyondink.com.au\">admin@beyondink.com.au</a></p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\"></p>[/et_pb_text][et_pb_divider _builder_version=\"3.0.106\" max_width=\"98%\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1564px\" custom_padding=\"1px|0px|0|0px\" custom_margin=\"|||\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"302,252,182,333\" gallery_captions=\",,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" hover_overlay_color=\"rgba(255,255,255,0.63)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact", "", "inherit", "closed", "closed", "", "102-revision-v1", "", "", "2018-07-08 09:38:18", "2018-07-08 09:38:18", "", "102", "https://beyondink.alluredigitalmarketing.com.au/102-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("932", "1", "2018-07-08 09:36:51", "2018-07-08 09:36:51", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#cccccc\" background_color_gradient_end=\"#9dd00f\" background_color_gradient_direction=\"5deg\" background_color_gradient_end_position=\"64%\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705-e1525939024788.jpg\" custom_padding=\"2.2%|0px|94px|0px\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1983px\" custom_padding=\"76px|0px|12px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Contact Us</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Contact Section\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|100px|0\"][et_pb_row custom_padding=\"28px|0px|27px|0px\" admin_label=\"Message Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form email=\"admin@beyondink.com.au\" success_message=\"Your message has been sent!\" form_background_color=\"rgba(26,26,26,0.08)\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.106\" title_font=\"||||||||\" form_field_font=\"Muli|600|||||||\" form_field_font_size=\"16px\" form_field_text_color=\"rgba(0,0,0,0.6)\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#000000\" button_border_width=\"10px\" button_border_color=\"#000000\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.0.92\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.106\"]<h4 style=\"text-align: center;\">Beyond Ink</h4>\n<p style=\"text-align: center;\"><strong>Address:</strong> 75 Mount Barker Road Hahndorf SA 5245<br /> <strong>Phone:</strong> 08 8388 1179<br /> <strong>Email: </strong><a href=\"mailto:admin@beyondink.com.au\">admin@beyondink.com.au</a></p>\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\"></p>[/et_pb_text][et_pb_divider _builder_version=\"3.0.106\" max_width=\"98%\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1564px\" custom_padding=\"1px|0px|0|0px\" custom_margin=\"|||\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"302,252,182,333\" gallery_captions=\",,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" hover_overlay_color=\"rgba(255,255,255,0.63)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact", "", "inherit", "closed", "closed", "", "102-revision-v1", "", "", "2018-07-08 09:36:51", "2018-07-08 09:36:51", "", "102", "https://beyondink.alluredigitalmarketing.com.au/102-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("934", "1", "2018-07-08 09:37:31", "2018-07-08 09:37:31", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#cccccc\" background_color_gradient_end=\"#9dd00f\" background_color_gradient_direction=\"5deg\" background_color_gradient_end_position=\"64%\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/North-East-Corner-Dulux-Gunmetal-Kinetic-1280x406.jpg\" custom_padding=\"2.2%|0px|94px|0px\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1983px\" custom_padding=\"76px|0px|12px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>About Us</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Intro Section\" _builder_version=\"3.0.92\" custom_padding=\"16px|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"25px|0px|0|0px\" admin_label=\"Intro Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1400px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h1><strong>Design innovation. Building Excellence.</strong></h1>\n<p><span style=\"font-size: 18px;\">Established in 2006 by owner John Ashcroft, we\'re a boutique design and construction company known for progressive and innovative design. </span></p>\n<p><span style=\"font-size: 18px;\">Our specialty is creating major regional projects which add value and vibrancy to communities. </span></p>\n<p><span style=\"font-size: 18px;\">However, regardless of the size of the project - whether it be a renovation or extension, or a large-scale build - our streamlined budget management system ensures peace of mind for our clients from beginning to end.</span></p>\n<p>Our recent projects include the design of the Wolf Blass Gallery and Museum in Hahndorf’s Main Street; and the redesign of the new world-class Murray Bridge Racing Club.</p>\n<p>Other past projects include landmark destinations such as The Manna Hotel, The Lane Winery, The Haus Restaurant, and Barker Plaza Shopping Centre.</p>[/et_pb_text][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Commercial Projects\" url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Kensingtons-Garden-Residence.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Residential Projects\" url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/https://beyondink.alluredigitalmarketing.com.au/residential/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Renovations\" url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/https://beyondink.alluredigitalmarketing.com.au/residential/https://beyondink.alluredigitalmarketing.com.au/restorations/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Hahndorf-Academy.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Coming Soon\" url=\"https://beyondink.alluredigitalmarketing.com.au/coming-soon/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Murray-Bridge-Racing-Club.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "closed", "closed", "", "211-revision-v1", "", "", "2018-07-08 09:37:31", "2018-07-08 09:37:31", "", "211", "https://beyondink.alluredigitalmarketing.com.au/211-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("939", "1", "2018-07-08 09:56:29", "2018-07-08 09:56:29", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"5deg\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/North-East-Corner-Dulux-Gunmetal-Kinetic-1280x406.jpg\" custom_padding=\"2.2%|0px|94px|0px\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1983px\" custom_padding=\"76px|0px|12px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>About Us</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Intro Section\" _builder_version=\"3.0.92\" custom_padding=\"16px|0px|0|15px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"25px|0px|0|0px\" admin_label=\"Intro Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1400px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h1><strong>Design innovation. Building Excellence.</strong></h1>\n<p><span style=\"font-size: 18px;\">Established in 2006 by owner John Ashcroft, we\'re a boutique design and construction company known for progressive and innovative design. </span></p>\n<p><span style=\"font-size: 18px;\">Our specialty is creating major regional projects which add value and vibrancy to communities. </span></p>\n<p><span style=\"font-size: 18px;\">However, regardless of the size of the project - whether it be a renovation or extension, or a large-scale build - our streamlined budget management system ensures peace of mind for our clients from beginning to end.</span></p>\n<p>Our recent projects include the design of the Wolf Blass Gallery and Museum in Hahndorf’s Main Street; and the redesign of the new world-class Murray Bridge Racing Club.</p>\n<p>Other past projects include landmark destinations such as The Manna Hotel, The Lane Winery, The Haus Restaurant, and Barker Plaza Shopping Centre.</p>[/et_pb_text][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Commercial Projects\" url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Kensingtons-Garden-Residence.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Residential Projects\" url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/https://beyondink.alluredigitalmarketing.com.au/residential/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Renovations\" url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/https://beyondink.alluredigitalmarketing.com.au/residential/https://beyondink.alluredigitalmarketing.com.au/restorations/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Hahndorf-Academy.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Coming Soon\" url=\"https://beyondink.alluredigitalmarketing.com.au/coming-soon/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Murray-Bridge-Racing-Club.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "closed", "closed", "", "211-revision-v1", "", "", "2018-07-08 09:56:29", "2018-07-08 09:56:29", "", "211", "https://beyondink.alluredigitalmarketing.com.au/211-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("946", "1", "2018-07-08 10:08:53", "2018-07-08 10:08:53", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#cccccc\" background_color_gradient_end=\"#9dd00f\" background_color_gradient_direction=\"5deg\" background_color_gradient_end_position=\"64%\" custom_padding=\"2.2%|0px|41px|0px\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1983px\" custom_padding=\"0|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Our Projects</h1>\n<p><span style=\"color: #ffffff;\">From major regional developments, to grand home designs - you can feel at ease with our beginning-to-end design, construction, and project management expertise.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_position=\"top_center\" custom_padding=\"0|0px|26px|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.106\"][/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"40px|0px|27px|0px\" make_equal=\"on\" background_color_2=\"#f3f3f3\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Front-Entry-Portal-Dulux-Gunmetal-Kinetic-2.jpg\" show_bottom_space=\"off\" _builder_version=\"3.0.106\" custom_padding=\"|||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Commercial Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/\" button_text=\"Discover Commercial Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]<p><span>Our commercial portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#f3f3f3\" background_color_2=\"#f3f3f3\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Residential Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/residential/\" button_text=\"Discover Residential Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]<p>As residential builders in Adelaide, we\'ve designed and built dozens of beautiful homes in South Australia. With our expertise and exemplary construction experience, we can build you a dream home beyond your expectations.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Carrickalinga-House.jpg\" _builder_version=\"3.0.106\" custom_margin=\"|||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_2=\"#f3f3f3\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-2.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Renovations\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/restorations/\" button_text=\"Discover Renovation Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]<p>No home renovation is too difficult for our team. We can completely transform your existing home to your ideal specifications, whilst ensuring your project is on time and on budget.</p>[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#f3f3f3\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Coming Soon\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/coming-soon/\" button_text=\"Discover Work In Progress\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]<p>Our team is always working on a number of commercial and residential projects in South Australia and beyond.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/North-East-Corner-Dulux-Gunmetal-Kinetic-Sm.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "Projects", "", "inherit", "closed", "closed", "", "120-revision-v1", "", "", "2018-07-08 10:08:53", "2018-07-08 10:08:53", "", "120", "https://beyondink.alluredigitalmarketing.com.au/120-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("943", "1", "2018-07-08 10:05:21", "2018-07-08 10:05:21", "", "Carrickalinga House", "", "inherit", "open", "closed", "", "carrickalinga-house", "", "", "2018-07-08 10:05:21", "2018-07-08 10:05:21", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Carrickalinga-House.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("944", "1", "2018-07-08 10:06:49", "2018-07-08 10:06:49", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#cccccc\" background_color_gradient_end=\"#9dd00f\" background_color_gradient_direction=\"5deg\" background_color_gradient_end_position=\"64%\" custom_padding=\"2.2%|0px|41px|0px\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1983px\" custom_padding=\"0|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Our Projects</h1>\n<p><span style=\"color: #ffffff;\">From major regional developments, to grand home designs - you can feel at ease with our beginning-to-end design, construction, and project management expertise.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_position=\"top_center\" custom_padding=\"0|0px|26px|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.106\"][/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_2=\"#f3f3f3\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\" custom_padding=\"5px|0px|27px|0px\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Front-Entry-Portal-Dulux-Gunmetal-Kinetic-2.jpg\" show_bottom_space=\"off\" _builder_version=\"3.0.106\" custom_padding=\"|||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Commercial Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/\" button_text=\"Discover Commercial Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]<p><span>Our commercial portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#f3f3f3\" background_color_2=\"#f3f3f3\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Residential Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/residential/\" button_text=\"Discover Residential Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]<p>As residential builders in Adelaide, we\'ve designed and built dozens of beautiful homes in South Australia. With our expertise and exemplary construction experience, we can build you a dream home beyond your expectations.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Carrickalinga-House.jpg\" _builder_version=\"3.0.106\" custom_margin=\"|||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_2=\"#f3f3f3\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-2.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Renovations\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/restorations/\" button_text=\"Discover Renovation Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]<p>No home renovation is too difficult for our team. We can completely transform your existing home to your ideal specifications, whilst ensuring your project is on time and on budget.</p>[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#f3f3f3\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Coming Soon\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/coming-soon/\" button_text=\"Discover Work In Progress\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]<p>Our team is always working on a number of commercial and residential projects in South Australia and beyond.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/North-East-Corner-Dulux-Gunmetal-Kinetic-Sm.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "Projects", "", "inherit", "closed", "closed", "", "120-revision-v1", "", "", "2018-07-08 10:06:49", "2018-07-08 10:06:49", "", "120", "https://beyondink.alluredigitalmarketing.com.au/120-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("947", "1", "2018-07-08 10:10:11", "2018-07-08 10:10:11", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#cccccc\" background_color_gradient_end=\"#9dd00f\" background_color_gradient_direction=\"5deg\" background_color_gradient_end_position=\"64%\" custom_padding=\"2.2%|0px|41px|0px\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1983px\" custom_padding=\"0|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Our Projects</h1>\n<p><span style=\"color: #ffffff;\">From major regional developments, to grand home designs - you can feel at ease with our beginning-to-end design, construction, and project management expertise.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_position=\"top_center\" custom_padding=\"0|0px|26px|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.106\"][/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"51px|0px|27px|0px\" make_equal=\"on\" background_color_2=\"#f3f3f3\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Front-Entry-Portal-Dulux-Gunmetal-Kinetic-2.jpg\" show_bottom_space=\"off\" _builder_version=\"3.0.106\" custom_padding=\"|||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Commercial Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/\" button_text=\"Discover Commercial Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]<p><span>Our commercial portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#f3f3f3\" background_color_2=\"#f3f3f3\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Residential Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/residential/\" button_text=\"Discover Residential Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]<p>As residential builders in Adelaide, we\'ve designed and built dozens of beautiful homes in South Australia. With our expertise and exemplary construction experience, we can build you a dream home beyond your expectations.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Carrickalinga-House.jpg\" _builder_version=\"3.0.106\" custom_margin=\"|||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_2=\"#f3f3f3\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-2.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Renovations\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/restorations/\" button_text=\"Discover Renovation Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]<p>No home renovation is too difficult for our team. We can completely transform your existing home to your ideal specifications, whilst ensuring your project is on time and on budget.</p>[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#f3f3f3\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Coming Soon\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/coming-soon/\" button_text=\"Discover Work In Progress\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]<p>Our team is always working on a number of commercial and residential projects in South Australia and beyond.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/North-East-Corner-Dulux-Gunmetal-Kinetic-Sm.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "Projects", "", "inherit", "closed", "closed", "", "120-revision-v1", "", "", "2018-07-08 10:10:11", "2018-07-08 10:10:11", "", "120", "https://beyondink.alluredigitalmarketing.com.au/120-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("951", "1", "2018-07-08 10:15:08", "2018-07-08 10:15:08", "", "Bridgewater Residence", "", "inherit", "open", "closed", "", "img_6211-1280x853", "", "", "2018-07-08 10:15:31", "2018-07-08 10:15:31", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/IMG_6211-1280x853.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("955", "1", "2018-07-08 10:19:46", "2018-07-08 10:19:46", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\" template_type=\"section\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Renovations</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Basic Header 8.7.18", "", "publish", "closed", "closed", "", "basic-header-8-7-18", "", "", "2018-07-08 10:19:46", "2018-07-08 10:19:46", "", "0", "https://beyondink.alluredigitalmarketing.com.au/et_pb_layout/basic-header-8-7-18/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("969", "1", "2018-07-08 10:31:20", "2018-07-08 10:31:20", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"5deg\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705-e1525939024788.jpg\" custom_padding=\"2.2%|0px|94px|0px\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1983px\" custom_padding=\"76px|0px|12px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Contact Us</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Contact Section\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|100px|0\"][et_pb_row custom_padding=\"28px|0px|27px|0px\" admin_label=\"Message Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form email=\"admin@beyondink.com.au\" success_message=\"Your message has been sent!\" form_background_color=\"rgba(26,26,26,0.08)\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.106\" title_font=\"||||||||\" form_field_font=\"Muli|600|||||||\" form_field_font_size=\"16px\" form_field_text_color=\"rgba(0,0,0,0.6)\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#000000\" button_border_width=\"10px\" button_border_color=\"#000000\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.0.92\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.106\"]<h4 style=\"text-align: center;\">Beyond Ink</h4>\n<p style=\"text-align: center;\"><strong>Address:</strong> 75 Mount Barker Road Hahndorf SA 5245<br /> <strong>Phone:</strong> 08 8388 1179<br /> <strong>Email: </strong><a href=\"mailto:admin@beyondink.com.au\" target=\"_blank\" rel=\"noopener noreferrer\">admin@beyondink.com.au</a></p>\n<p style=\"text-align: center;\">\n[/et_pb_text][et_pb_divider _builder_version=\"3.0.106\" max_width=\"98%\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1564px\" custom_padding=\"1px|0px|0|0px\" custom_margin=\"|||\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"302,252,182,333\" gallery_captions=\",,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" hover_overlay_color=\"rgba(255,255,255,0.63)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact", "", "inherit", "closed", "closed", "", "102-revision-v1", "", "", "2018-07-08 10:31:20", "2018-07-08 10:31:20", "", "102", "https://beyondink.alluredigitalmarketing.com.au/102-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("971", "1", "2018-07-08 10:33:32", "2018-07-08 10:33:32", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"5deg\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/North-East-Corner-Dulux-Gunmetal-Kinetic-1280x406.jpg\" custom_padding=\"2.2%|0px|94px|0px\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1983px\" custom_padding=\"76px|0px|12px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>About Us</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Intro Section\" _builder_version=\"3.0.92\" custom_padding=\"16px|0px|0|15px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"25px|0px|0|0px\" admin_label=\"Intro Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1400px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h1><strong>Design innovation. Building Excellence.</strong></h1>\n<p><span style=\"font-size: 18px;\">Established in 2006 by owner John Ashcroft, we\'re a boutique design and construction company known for progressive and innovative design. </span></p>\n<p><span style=\"font-size: 18px;\">Our specialty is creating major regional projects which add value and vibrancy to communities. </span></p>\n<p><span style=\"font-size: 18px;\">Regardless of the size of the project - whether it be a renovation or extension, or a large-scale build - our streamlined budget management system ensures peace of mind for our clients from beginning to end.</span></p>\n<p>Our recent projects include the design of the Wolf Blass Gallery and Museum in Hahndorf’s Main Street; and the redesign of the new world-class Murray Bridge Racing Club.</p>\n<p>Other past projects include landmark destinations such as The Manna Hotel, The Lane Winery, The Haus Restaurant, and Barker Plaza Shopping Centre.</p>[/et_pb_text][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Commercial Projects\" url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Kensingtons-Garden-Residence.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\" animation_style=\"fade\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Residential Projects\" url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/https://beyondink.alluredigitalmarketing.com.au/residential/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\" animation_style=\"fade\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Renovations\" url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/https://beyondink.alluredigitalmarketing.com.au/residential/https://beyondink.alluredigitalmarketing.com.au/restorations/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Hahndorf-Academy.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\" animation_style=\"fade\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Coming Soon\" url=\"https://beyondink.alluredigitalmarketing.com.au/coming-soon/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Murray-Bridge-Racing-Club.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\" animation_style=\"fade\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "closed", "closed", "", "211-revision-v1", "", "", "2018-07-08 10:33:32", "2018-07-08 10:33:32", "", "211", "https://beyondink.alluredigitalmarketing.com.au/211-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("973", "1", "2018-07-08 10:40:48", "2018-07-08 10:40:48", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"5deg\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/North-East-Corner-Dulux-Gunmetal-Kinetic-1280x406.jpg\" custom_padding=\"2.2%|0px|94px|0px\" next_background_color=\"#000000\"][et_pb_row admin_label=\"Title Row\" use_custom_width=\"on\" custom_width_px=\"1983px\" custom_padding=\"76px|0px|12px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>About Us</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Intro Section\" _builder_version=\"3.0.92\" custom_padding=\"16px|0px|0|15px\" prev_background_color=\"#000000\"][et_pb_row admin_label=\"Intro Row\" make_fullwidth=\"on\" custom_padding=\"25px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1400px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]\r\n<h1><strong>Design innovation. Building Excellence.</strong></h1>\r\n<span style=\"font-size: 18px;\">Established in 2006 by owner John Ashcroft, we\'re a boutique design and construction company known for progressive and innovative design. </span>\r\n\r\n<span style=\"font-size: 18px;\">Our specialty is creating major regional projects which add value and vibrancy to communities. </span>\r\n\r\n<span style=\"font-size: 18px;\">Regardless of the size of the project - whether it be a renovation or extension, or a large-scale build - our streamlined budget management system ensures peace of mind for our clients from beginning to end.</span>\r\n\r\nOur recent projects include the design of the Wolf Blass Gallery and Museum in Hahndorf’s Main Street; and the redesign of the new world-class Murray Bridge Racing Club.\r\n\r\nOther past projects include landmark destinations such as The Manna Hotel, The Lane Winery, The Haus Restaurant, and Barker Plaza Shopping Centre.\r\n\r\n[/et_pb_text][et_pb_divider _builder_version=\"3.0.106\" /][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\"][et_pb_blurb title=\"Commercial Projects\" url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Kensingtons-Garden-Residence.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\" animation_style=\"fade\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"Residential Projects\" url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/https://beyondink.alluredigitalmarketing.com.au/residential/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\" animation_style=\"fade\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"Renovations\" url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/https://beyondink.alluredigitalmarketing.com.au/residential/https://beyondink.alluredigitalmarketing.com.au/restorations/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Hahndorf-Academy.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\" animation_style=\"fade\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"Coming Soon\" url=\"https://beyondink.alluredigitalmarketing.com.au/coming-soon/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Murray-Bridge-Racing-Club.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\" animation_style=\"fade\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "closed", "closed", "", "211-revision-v1", "", "", "2018-07-08 10:40:48", "2018-07-08 10:40:48", "", "211", "https://beyondink.alluredigitalmarketing.com.au/211-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("965", "1", "2018-07-08 10:28:04", "2018-07-08 10:28:04", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"5deg\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/North-East-Corner-Dulux-Gunmetal-Kinetic-1280x406.jpg\" custom_padding=\"2.2%|0px|94px|0px\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1983px\" custom_padding=\"76px|0px|12px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>About Us</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Intro Section\" _builder_version=\"3.0.92\" custom_padding=\"16px|0px|0|15px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"25px|0px|0|0px\" admin_label=\"Intro Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1400px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h1><strong>Design innovation. Building Excellence.</strong></h1>\n<p><span style=\"font-size: 18px;\">Established in 2006 by owner John Ashcroft, we\'re a boutique design and construction company known for progressive and innovative design. </span></p>\n<p><span style=\"font-size: 18px;\">Our specialty is creating major regional projects which add value and vibrancy to communities. </span></p>\n<p><span style=\"font-size: 18px;\">However, regardless of the size of the project - whether it be a renovation or extension, or a large-scale build - our streamlined budget management system ensures peace of mind for our clients from beginning to end.</span></p>\n<p>Our recent projects include the design of the Wolf Blass Gallery and Museum in Hahndorf’s Main Street; and the redesign of the new world-class Murray Bridge Racing Club.</p>\n<p>Other past projects include landmark destinations such as The Manna Hotel, The Lane Winery, The Haus Restaurant, and Barker Plaza Shopping Centre.</p>[/et_pb_text][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Commercial Projects\" url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Kensingtons-Garden-Residence.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\" animation_style=\"fade\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Residential Projects\" url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/https://beyondink.alluredigitalmarketing.com.au/residential/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\" animation_style=\"fade\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Renovations\" url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/https://beyondink.alluredigitalmarketing.com.au/residential/https://beyondink.alluredigitalmarketing.com.au/restorations/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Hahndorf-Academy.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\" animation_style=\"fade\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Coming Soon\" url=\"https://beyondink.alluredigitalmarketing.com.au/coming-soon/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Murray-Bridge-Racing-Club.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\" animation_style=\"fade\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "closed", "closed", "", "211-revision-v1", "", "", "2018-07-08 10:28:04", "2018-07-08 10:28:04", "", "211", "https://beyondink.alluredigitalmarketing.com.au/211-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("963", "1", "2018-07-08 10:27:30", "2018-07-08 10:27:30", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"5deg\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/North-East-Corner-Dulux-Gunmetal-Kinetic-1280x406.jpg\" custom_padding=\"2.2%|0px|94px|0px\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1983px\" custom_padding=\"76px|0px|12px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>About Us</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Intro Section\" _builder_version=\"3.0.92\" custom_padding=\"16px|0px|0|15px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"25px|0px|0|0px\" admin_label=\"Intro Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1400px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h1><strong>Design innovation. Building Excellence.</strong></h1>\n<p><span style=\"font-size: 18px;\">Established in 2006 by owner John Ashcroft, we\'re a boutique design and construction company known for progressive and innovative design. </span></p>\n<p><span style=\"font-size: 18px;\">Our specialty is creating major regional projects which add value and vibrancy to communities. </span></p>\n<p><span style=\"font-size: 18px;\">However, regardless of the size of the project - whether it be a renovation or extension, or a large-scale build - our streamlined budget management system ensures peace of mind for our clients from beginning to end.</span></p>\n<p>Our recent projects include the design of the Wolf Blass Gallery and Museum in Hahndorf’s Main Street; and the redesign of the new world-class Murray Bridge Racing Club.</p>\n<p>Other past projects include landmark destinations such as The Manna Hotel, The Lane Winery, The Haus Restaurant, and Barker Plaza Shopping Centre.</p>[/et_pb_text][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Commercial Projects\" url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Kensingtons-Garden-Residence.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\" animation_style=\"fade\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Residential Projects\" url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/https://beyondink.alluredigitalmarketing.com.au/residential/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Renovations\" url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/https://beyondink.alluredigitalmarketing.com.au/residential/https://beyondink.alluredigitalmarketing.com.au/restorations/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Hahndorf-Academy.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Coming Soon\" url=\"https://beyondink.alluredigitalmarketing.com.au/coming-soon/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Murray-Bridge-Racing-Club.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "closed", "closed", "", "211-revision-v1", "", "", "2018-07-08 10:27:30", "2018-07-08 10:27:30", "", "211", "https://beyondink.alluredigitalmarketing.com.au/211-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("959", "1", "2018-07-08 10:23:40", "2018-07-08 10:23:40", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" background_position_2=\"center\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/contact/\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]<p>We\'re a boutique design and construction company - big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|14px|0px\"][et_pb_row custom_padding=\"46px|0px|72px|0px\" custom_margin=\"-45px|||\" _builder_version=\"3.0.106\" custom_margin_phone=\"-25px|||\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"25px|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2><strong>Commercial Projects. New Homes. Additions.</strong></h2>\n<h3><span style=\"color: #000000;\"><strong>Insightful design. Exemplary construction.</strong></span></h3>\n<p>Having a team of talented designers and project managers allows us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#535353\" admin_label=\"CTA Section\" _builder_version=\"3.0.106\" custom_padding=\"21px||0|\"][et_pb_row custom_padding=\"55px||25px|\" admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p><span style=\"color: #ffffff;\">• Interior Design</span><br /><span style=\"color: #ffffff;\"> • Landcape Design</span></p>\n<p><span style=\"color: #ffffff;\">We\'re a commercial and residential design and construction company.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p><span style=\"color: #ffffff;\">• Commercial</span><br /><span style=\"color: #ffffff;\"> • Residential</span></p>\n<p><span style=\"color: #ffffff;\">We\'re passionate about innovation to create the best possible space.</span></p>\n<p><span style=\"color: #ffffff;\"> </span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p><span style=\"color: #ffffff;\">• Town Planning</span><br /><span style=\"color: #ffffff;\"> • Cost Control</span></p>\n<p><span style=\"color: #ffffff;\">We\'re committed to quality and value for money, delivering on time and on budget.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"41px||0|\"][et_pb_row custom_padding=\"27px|0px|62px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Barker-Plaza-Entrance-800x534.jpg\" show_in_lightbox=\"on\" align=\"center\" _builder_version=\"3.0.106\" custom_margin=\"||25px|\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-13-of-47-800x535.jpg\" show_in_lightbox=\"on\" align=\"center\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533.jpg\" show_in_lightbox=\"on\" align=\"center\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#535353\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0|0px|23px|0px\" custom_margin=\"||50px|\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/11-Walker-Street-HI-RES-1024x523.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"0px|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]<p><span style=\"color: #ffffff;\">Our portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_margin=\"-50px||-50px|\" custom_padding=\"0|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]<p>Sign up to keep up to date with what\'s happening at Beyond Ink.</p>[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-07-08 10:23:40", "2018-07-08 10:23:40", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("961", "1", "2018-07-08 10:24:36", "2018-07-08 10:24:36", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" background_position_2=\"center\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/contact/\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]<p>We\'re a boutique design and construction company - big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|14px|0px\"][et_pb_row custom_padding=\"46px|0px|72px|0px\" custom_margin=\"-45px|||\" _builder_version=\"3.0.106\" custom_margin_phone=\"-25px|||\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"25px|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2><strong>Commercial Projects. New Homes. Additions.</strong></h2>\n<h3><span style=\"color: #000000;\"><strong>Insightful design. Exemplary construction.</strong></span></h3>\n<p>A talented team of designers and project managers enables us to adopt a holistic approach to creating and delivering a comprehensive commercial and residential package.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#535353\" admin_label=\"CTA Section\" _builder_version=\"3.0.106\" custom_padding=\"21px||0|\"][et_pb_row custom_padding=\"55px||25px|\" admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p><span style=\"color: #ffffff;\">• Interior Design</span><br /><span style=\"color: #ffffff;\"> • Landcape Design</span></p>\n<p><span style=\"color: #ffffff;\">We\'re a commercial and residential design and construction company.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p><span style=\"color: #ffffff;\">• Commercial</span><br /><span style=\"color: #ffffff;\"> • Residential</span></p>\n<p><span style=\"color: #ffffff;\">We\'re passionate about innovation to create the best possible space.</span></p>\n<p><span style=\"color: #ffffff;\"> </span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p><span style=\"color: #ffffff;\">• Town Planning</span><br /><span style=\"color: #ffffff;\"> • Cost Control</span></p>\n<p><span style=\"color: #ffffff;\">We\'re committed to quality and value for money, delivering on time and on budget.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"41px||0|\"][et_pb_row custom_padding=\"27px|0px|62px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Barker-Plaza-Entrance-800x534.jpg\" show_in_lightbox=\"on\" align=\"center\" _builder_version=\"3.0.106\" custom_margin=\"||25px|\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-13-of-47-800x535.jpg\" show_in_lightbox=\"on\" align=\"center\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533.jpg\" show_in_lightbox=\"on\" align=\"center\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#535353\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0|0px|23px|0px\" custom_margin=\"||50px|\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/11-Walker-Street-HI-RES-1024x523.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"0px|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]<p><span style=\"color: #ffffff;\">Our portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_margin=\"-50px||-50px|\" custom_padding=\"0|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]<p>Sign up to keep up to date with what\'s happening at Beyond Ink.</p>[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-07-08 10:24:36", "2018-07-08 10:24:36", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("967", "1", "2018-07-08 10:29:34", "2018-07-08 10:29:34", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Racing at Gifford Hill - Murray Bridge Racing Club</h1>\n<p><span style=\"color: #ffffff;\"></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"30px|0px|0|0px\" background_color=\"Our projects range from major regional developments, to grand home designs. You can feel at ease with our beginning-to-end design, construction, and project management expertise.\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>We\'re proud to be responsible for the redesign and project management of the new $20 million state-of-the-art Murray Bridge Racing Club at Gifford Hill.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/North-East-Corner-Dulux-Gunmetal-Kinetic-800x254.jpg\" align=\"center\" _builder_version=\"3.0.106\" custom_margin=\"25px|||\"][/et_pb_image][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" align=\"center\" _builder_version=\"3.0.106\" custom_margin=\"||25px|\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>Set to open early 2019, this world-class racetrack development - with function centre, food and beverage outlets, and raceday facilities - is located just an hour\'s drive from Adelaide.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][et_pb_gallery gallery_ids=\"144,200,726,727\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" custom_margin=\"25px|||\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Racing at Gifford Hill - Murray Bridge Racing Club", "", "inherit", "closed", "closed", "", "718-revision-v1", "", "", "2018-07-08 10:29:34", "2018-07-08 10:29:34", "", "718", "https://beyondink.alluredigitalmarketing.com.au/718-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("978", "1", "2018-07-08 10:44:24", "2018-07-08 10:44:24", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" background_position_2=\"center\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/contact/\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading &amp; CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]\r\n\r\nWe\'re a boutique design and construction company - big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.\r\n\r\n[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|14px|0px\"][et_pb_row custom_padding=\"46px|0px|72px|0px\" custom_margin=\"-45px|||\" _builder_version=\"3.0.106\" custom_margin_phone=\"-25px|||\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"25px|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]\r\n<h2><strong>Commercial Projects. New Homes. Additions.</strong></h2>\r\n<h3><span style=\"color: #000000;\"><strong>Insightful design. Exemplary construction.</strong></span></h3>\r\nHaving a talented team of designers and project managers enables us to adopt an holistic approach when creating and delivering a comprehensive commercial and residential package to meet and exceed your needs.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#535353\" admin_label=\"CTA Section\" _builder_version=\"3.0.106\" custom_padding=\"21px||0|\"][et_pb_row custom_padding=\"55px||25px|\" admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]\r\n\r\n<span style=\"color: #ffffff;\">• Interior Design</span>\r\n<span style=\"color: #ffffff;\"> • Landcape Design</span>\r\n\r\n<span style=\"color: #ffffff;\">We\'re a commercial and residential design and construction company.</span>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]\r\n\r\n<span style=\"color: #ffffff;\">• Commercial</span>\r\n<span style=\"color: #ffffff;\"> • Residential</span>\r\n\r\n<span style=\"color: #ffffff;\">We\'re passionate about innovation to create the best possible space.</span>\r\n\r\n<span style=\"color: #ffffff;\"> </span>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]\r\n\r\n<span style=\"color: #ffffff;\">• Town Planning</span>\r\n<span style=\"color: #ffffff;\"> • Cost Control</span>\r\n\r\n<span style=\"color: #ffffff;\">We\'re committed to quality and value for money, delivering on time and on budget.</span>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"41px||0|\"][et_pb_row custom_padding=\"27px|0px|62px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Barker-Plaza-Entrance-800x534.jpg\" show_in_lightbox=\"on\" align=\"center\" _builder_version=\"3.0.106\" custom_margin=\"||25px|\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-13-of-47-800x535.jpg\" show_in_lightbox=\"on\" align=\"center\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533.jpg\" show_in_lightbox=\"on\" align=\"center\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#535353\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0|0px|23px|0px\" custom_margin=\"||50px|\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/11-Walker-Street-HI-RES-1024x523.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"0px|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]\r\n\r\n<span style=\"color: #ffffff;\">Our portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span>\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_margin=\"-50px||-50px|\" custom_padding=\"0|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]\r\n\r\nSign up to keep up to date with what\'s happening at Beyond Ink.\r\n\r\n[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-07-08 10:44:24", "2018-07-08 10:44:24", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("979", "1", "2018-07-09 00:28:50", "2018-07-09 00:28:50", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" background_position_2=\"center\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/contact/\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]We\'re a boutique design and construction company - big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|14px|0px\"][et_pb_row custom_padding=\"46px|0px|72px|0px\" custom_margin=\"-45px|||\" _builder_version=\"3.0.106\" custom_margin_phone=\"-25px|||\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"25px|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2><strong>Commercial Projects. New Homes. Additions.</strong></h2>\n<h3><span style=\"color: #000000;\"><strong>Insightful design. Exemplary construction.</strong></span></h3>\n<p>Having a talented team of designers and project managers enables us to adopt an holistic approach when creating and delivering a comprehensive commercial and residential package that meets and exceed your needs.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#535353\" admin_label=\"CTA Section\" _builder_version=\"3.0.106\" custom_padding=\"21px||0|\"][et_pb_row custom_padding=\"55px||25px|\" admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<span style=\"color: #ffffff;\">• Interior Design</span>\r\n<span style=\"color: #ffffff;\"> • Landcape Design</span>\r\n\r\n<span style=\"color: #ffffff;\">We\'re a commercial and residential design and construction company.</span>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<span style=\"color: #ffffff;\">• Commercial</span>\r\n<span style=\"color: #ffffff;\"> • Residential</span>\r\n\r\n<span style=\"color: #ffffff;\">We\'re passionate about innovation to create the best possible space.</span>\r\n\r\n<span style=\"color: #ffffff;\"> </span>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<span style=\"color: #ffffff;\">• Town Planning</span>\r\n<span style=\"color: #ffffff;\"> • Cost Control</span>\r\n\r\n<span style=\"color: #ffffff;\">We\'re committed to quality and value for money, delivering on time and on budget.</span>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"41px||0|\"][et_pb_row custom_padding=\"27px|0px|62px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Barker-Plaza-Entrance-800x534.jpg\" show_in_lightbox=\"on\" align=\"center\" _builder_version=\"3.0.106\" custom_margin=\"||25px|\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-13-of-47-800x535.jpg\" show_in_lightbox=\"on\" align=\"center\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533.jpg\" show_in_lightbox=\"on\" align=\"center\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#535353\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0|0px|23px|0px\" custom_margin=\"||50px|\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/11-Walker-Street-HI-RES-1024x523.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"0px|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]<span style=\"color: #ffffff;\">Our portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span>\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_margin=\"-50px||-50px|\" custom_padding=\"0|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]Sign up to keep up to date with what\'s happening at Beyond Ink.\r[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-07-09 00:28:50", "2018-07-09 00:28:50", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("977", "1", "2018-07-08 10:43:32", "2018-07-08 10:43:32", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" background_position_2=\"center\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/contact/\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]<p>We\'re a boutique design and construction company - big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|14px|0px\"][et_pb_row custom_padding=\"46px|0px|72px|0px\" custom_margin=\"-45px|||\" _builder_version=\"3.0.106\" custom_margin_phone=\"-25px|||\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"25px|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2><strong>Commercial Projects. New Homes. Additions.</strong></h2>\n<h3><span style=\"color: #000000;\"><strong>Insightful design. Exemplary construction.</strong></span></h3>\n<p>Having a talented team of designers and project managers enables us to adopt an holistic approach when creating and delivering a comprehensive commercial and residential package to meet and exceed your needs.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#535353\" admin_label=\"CTA Section\" _builder_version=\"3.0.106\" custom_padding=\"21px||0|\"][et_pb_row custom_padding=\"55px||25px|\" admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p><span style=\"color: #ffffff;\">• Interior Design</span><br /><span style=\"color: #ffffff;\"> • Landcape Design</span></p>\n<p><span style=\"color: #ffffff;\">We\'re a commercial and residential design and construction company.</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p><span style=\"color: #ffffff;\">• Commercial</span><br /><span style=\"color: #ffffff;\"> • Residential</span></p>\n<p><span style=\"color: #ffffff;\">We\'re passionate about innovation to create the best possible space.</span></p>\n<p><span style=\"color: #ffffff;\"> </span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<p><span style=\"color: #ffffff;\">• Town Planning</span><br /><span style=\"color: #ffffff;\"> • Cost Control</span></p>\n<p><span style=\"color: #ffffff;\">We\'re committed to quality and value for money, delivering on time and on budget.</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"41px||0|\"][et_pb_row custom_padding=\"27px|0px|62px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Barker-Plaza-Entrance-800x534.jpg\" show_in_lightbox=\"on\" align=\"center\" _builder_version=\"3.0.106\" custom_margin=\"||25px|\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-13-of-47-800x535.jpg\" show_in_lightbox=\"on\" align=\"center\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533.jpg\" show_in_lightbox=\"on\" align=\"center\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#535353\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0|0px|23px|0px\" custom_margin=\"||50px|\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/11-Walker-Street-HI-RES-1024x523.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"0px|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]<p><span style=\"color: #ffffff;\">Our portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_margin=\"-50px||-50px|\" custom_padding=\"0|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]<p>Sign up to keep up to date with what\'s happening at Beyond Ink.</p>[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-07-08 10:43:32", "2018-07-08 10:43:32", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("980", "1", "2018-07-09 00:33:14", "2018-07-09 00:33:14", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#cccccc\" background_color_gradient_end=\"#9dd00f\" background_color_gradient_direction=\"5deg\" background_color_gradient_end_position=\"64%\" custom_padding=\"2.2%|0px|41px|0px\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1983px\" custom_padding=\"0|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Our Projects</h1>\n<p><span style=\"color: #ffffff;\">From major regional developments, to grand home designs - you can feel at ease with our beginning-to-end design, construction, and project management expertise.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_position=\"top_center\" custom_padding=\"0|0px|26px|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.106\"][/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"51px|0px|27px|0px\" make_equal=\"on\" background_color_2=\"#f3f3f3\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Front-Entry-Portal-Dulux-Gunmetal-Kinetic-2.jpg\" show_bottom_space=\"off\" _builder_version=\"3.0.106\" custom_padding=\"|||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Commercial Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/\" button_text=\"Discover Commercial Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]<p><span>Our commercial portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#f3f3f3\" background_color_2=\"#f3f3f3\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Residential Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/residential/\" button_text=\"Discover Residential Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]<p>As residential builders in Adelaide, we\'ve designed and built dozens of beautiful homes in South Australia. With our expertise and exemplary construction experience, we can build you a dream home beyond your expectations.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Carrickalinga-House.jpg\" _builder_version=\"3.0.106\" custom_margin=\"|||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_2=\"#f3f3f3\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-2.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Renovations\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/restorations/\" button_text=\"Discover Renovation Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]<p>No renovation is too difficult for our team. We can completely transform your existing home or site to your ideal specifications, whilst ensuring your project is on time and on budget.</p>[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#f3f3f3\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Coming Soon\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/coming-soon/\" button_text=\"Discover Work In Progress\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]<p>Our team is always working on a number of commercial and residential projects in South Australia and beyond.</p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/North-East-Corner-Dulux-Gunmetal-Kinetic-Sm.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "Projects", "", "inherit", "closed", "closed", "", "120-revision-v1", "", "", "2018-07-09 00:33:14", "2018-07-09 00:33:14", "", "120", "https://beyondink.alluredigitalmarketing.com.au/120-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("983", "1", "2018-07-18 09:45:34", "2018-07-18 09:45:34", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Racing at Gifford Hill - Murray Bridge Racing Club</h1>\n<p><span style=\"color: #ffffff;\"></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"Our projects range from major regional developments, to grand home designs. You can feel at ease with our beginning-to-end design, construction, and project management expertise.\" _builder_version=\"3.0.106\" custom_padding=\"30px|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>We\'re proud to be responsible for the redesign and project management of the new $20 million state-of-the-art Murray Bridge Racing Club at Gifford Hill.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/North-East-Corner-Dulux-Gunmetal-Kinetic-800x254.jpg\" align=\"center\" _builder_version=\"3.0.106\" custom_margin=\"25px|||\"][/et_pb_image][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" align=\"center\" _builder_version=\"3.0.106\" custom_margin=\"||25px|\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>Set to open early 2019, this world-class racetrack development - with function centre, food and beverage outlets, and raceday facilities - is located just an hour\'s drive from Adelaide.</p>\n<p>Builder: <a href=\"https://marshallbrougham.com.au\" target=\"_blank\" rel=\"noopener noreferrer\">Marshall &amp; Brougham</a></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][et_pb_gallery gallery_ids=\"144,200,726,727\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" custom_margin=\"25px|||\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Racing at Gifford Hill - Murray Bridge Racing Club", "", "inherit", "closed", "closed", "", "718-revision-v1", "", "", "2018-07-18 09:45:34", "2018-07-18 09:45:34", "", "718", "https://beyondink.alluredigitalmarketing.com.au/718-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("986", "1", "2018-07-18 09:48:09", "2018-07-18 09:48:09", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#9dd00f\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"27px|0px|11px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Crafers Residence</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\" prev_background_color=\"#9dd00f\" next_background_color=\"#000000\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235,250,246\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\" prev_background_color=\"#000000\"][et_pb_fullwidth_image _builder_version=\"3.0.106\" /][/et_pb_section]", "123 Greenhill Road", "", "inherit", "closed", "closed", "", "985-revision-v1", "", "", "2018-07-18 09:48:09", "2018-07-18 09:48:09", "", "985", "https://beyondink.alluredigitalmarketing.com.au/985-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("993", "1", "2018-07-18 09:53:41", "2018-07-18 09:53:41", " ", "", "", "publish", "closed", "closed", "", "993", "", "", "2018-07-30 02:30:40", "2018-07-30 02:30:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?p=993", "12", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("988", "1", "2018-07-18 09:49:33", "2018-07-18 09:49:33", "", "123 Greenhill Road", "", "inherit", "open", "closed", "", "img_3801", "", "", "2018-07-18 10:06:17", "2018-07-18 10:06:17", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/IMG_3801.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("985", "1", "2018-07-18 09:48:09", "2018-07-18 09:48:09", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>123 Greenhill Road</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|21px|0px\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f3f3f3\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>In the redesign of 123 Greenhill Road, we retained the existing building behind the façade and provided an economical visual solution to overcome the challenges the building presented.</p>\n<p>The interior of the building was gutted to provide for a more contemporary office layout, and the new frontage of the building now allows for a virtually unbroken view across the South Parklands.</p>\n<p><strong>Our Involvement: Design, Town Planning</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"32px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"990,989,988,1004\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|21px|0px\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f3f3f3\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>Now a commercial office building, originally 123 Greenhill Road was the Adelaide Steamship building - and later, Rural Press.</p>\n<p>S<span style=\"font-size: 18px;\">ee before images below.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\" custom_padding=\"58px|0px|27px|0px\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/123-Greenhill-Road.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/123-Greenhill-Road-Old2.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "123 Greenhill Road", "", "publish", "closed", "closed", "", "123-greenhill-road", "", "", "2018-07-24 10:31:35", "2018-07-24 10:31:35", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=985", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("996", "1", "2018-07-18 09:56:02", "2018-07-18 09:56:02", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>123 Greenhill Road</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"991,990,989,988\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "123 Greenhill Road", "", "inherit", "closed", "closed", "", "985-revision-v1", "", "", "2018-07-18 09:56:02", "2018-07-18 09:56:02", "", "985", "https://beyondink.alluredigitalmarketing.com.au/985-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("999", "1", "2018-07-18 09:59:55", "2018-07-18 09:59:55", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>123 Greenhill Road</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.106\"]<p style=\"text-align: center;\">The building at 123 Greenhill Road in Adelaide was previously the Adelaide Steamship building - and later, Rural Press.</p>\n<p style=\"text-align: center;\">In its redesign, we retained the existing building behind the façade and provided an economical visual solution to overcome the challenges the building presented.</p>\n<p style=\"text-align: center;\">The building was gutted to provide for a more contemporary office layout and the newly-designed building now has a virtually unbroken view across the south parklands.</p>\n<p style=\"text-align: center;\">Services provided: Design, Town Planning</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"991,990,989,988\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "123 Greenhill Road", "", "inherit", "closed", "closed", "", "985-revision-v1", "", "", "2018-07-18 09:59:55", "2018-07-18 09:59:55", "", "985", "https://beyondink.alluredigitalmarketing.com.au/985-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("998", "1", "2018-07-18 09:59:27", "2018-07-18 09:59:27", "[et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\" template_type=\"module\"]<p>We\'re proud to be responsible for the redesign and project management of the new $20 million state-of-the-art Murray Bridge Racing Club at Gifford Hill.</p>[/et_pb_text]", "Project Bio", "", "publish", "closed", "closed", "", "project-bio", "", "", "2018-07-18 09:59:27", "2018-07-18 09:59:27", "", "0", "https://beyondink.alluredigitalmarketing.com.au/et_pb_layout/project-bio/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("1000", "1", "2018-07-18 10:00:07", "2018-07-18 10:00:07", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Racing at Gifford Hill - Murray Bridge Racing Club</h1>\n<p><span style=\"color: #ffffff;\"></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"Our projects range from major regional developments, to grand home designs. You can feel at ease with our beginning-to-end design, construction, and project management expertise.\" _builder_version=\"3.0.106\" custom_padding=\"30px|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>We\'re proud to be responsible for the redesign and project management of the new $20 million state-of-the-art Murray Bridge Racing Club at Gifford Hill.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/North-East-Corner-Dulux-Gunmetal-Kinetic-800x254.jpg\" align=\"center\" _builder_version=\"3.0.106\" custom_margin=\"25px|||\"][/et_pb_image][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" align=\"center\" _builder_version=\"3.0.106\" custom_margin=\"||25px|\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>Set to open early 2019, this world-class racetrack development - with function centre, food and beverage outlets, and raceday facilities - is located just an hour\'s drive from Adelaide.</p>\n<p>Builder: <a href=\"https://marshallbrougham.com.au\" target=\"_blank\" rel=\"noopener noreferrer\">Marshall & Brougham</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][et_pb_gallery gallery_ids=\"144,200,726,727\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" custom_margin=\"25px|||\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Racing at Gifford Hill - Murray Bridge Racing Club", "", "inherit", "closed", "closed", "", "718-revision-v1", "", "", "2018-07-18 10:00:07", "2018-07-18 10:00:07", "", "718", "https://beyondink.alluredigitalmarketing.com.au/718-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1009", "1", "2018-07-18 10:12:42", "2018-07-18 10:12:42", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>K1 Winery</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|24px|0px\"][et_pb_row background_color=\"#f1f1f1\" _builder_version=\"3.0.106\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>We designed the winery and cellar door for Geoff Hardy and his family. It incorporates a large function area, administration spaces, and other facilities associated with the K1 Wine brand.</p>\n<p><strong>Our Involvement: Design, Town Planning</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"554,1007\" gallery_orderby=\"rand\" posts_number=\"2\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" gallery_captions=\",\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "K1 Winery", "", "inherit", "closed", "closed", "", "550-revision-v1", "", "", "2018-07-18 10:12:42", "2018-07-18 10:12:42", "", "550", "https://beyondink.alluredigitalmarketing.com.au/550-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1002", "1", "2018-07-18 10:03:24", "2018-07-18 10:03:24", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>123 Greenhill Road</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|21px|0px\"][et_pb_row _builder_version=\"3.0.106\" make_fullwidth=\"on\" background_color=\"#f3f3f3\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>A commercial building at 123 Greenhill Road, Adelaide, this now office building, was previously the Adelaide Steamship building - and later, Rural Press.</p>\n<p>In its redesign, we retained the existing building behind the façade and provided an economical visual solution to overcome the challenges the building presented.</p>\n<p>The interior of the building was gutted to provide for a more contemporary office layout, and the new frontage of the building now allows for a virtually unbroken view across the South parklands.</p>\n<p><strong>Our involvement: Design, Town Planning</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"33px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"991,990,989,988\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "123 Greenhill Road", "", "inherit", "closed", "closed", "", "985-revision-v1", "", "", "2018-07-18 10:03:24", "2018-07-18 10:03:24", "", "985", "https://beyondink.alluredigitalmarketing.com.au/985-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1004", "1", "2018-07-18 10:04:54", "2018-07-18 10:04:54", "", "123 Greenhill Road", "", "inherit", "open", "closed", "", "img_7546-2", "", "", "2018-07-18 10:05:04", "2018-07-18 10:05:04", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/IMG_7546-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1005", "1", "2018-07-18 10:05:48", "2018-07-18 10:05:48", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>123 Greenhill Road</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|21px|0px\"][et_pb_row _builder_version=\"3.0.106\" make_fullwidth=\"on\" background_color=\"#f3f3f3\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>Now a commercial office building, originally 123 Greenhill Road (in Adelaide) was the Adelaide Steamship building - and later, Rural Press.</p>\n<p>In its redesign, we retained the existing building behind the façade and provided an economical visual solution to overcome the challenges the building presented.</p>\n<p>The interior of the building was gutted to provide for a more contemporary office layout, and the new frontage of the building now allows for a virtually unbroken view across the South parklands.</p>\n<p><strong>Our involvement: Design, Town Planning</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"33px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"990,989,988,1004\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "123 Greenhill Road", "", "inherit", "closed", "closed", "", "985-revision-v1", "", "", "2018-07-18 10:05:48", "2018-07-18 10:05:48", "", "985", "https://beyondink.alluredigitalmarketing.com.au/985-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1015", "1", "2018-07-18 10:21:42", "2018-07-18 10:21:42", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>The Haus Cafe+Bar+Kitchen</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row background_color=\"#f1f1f1\" _builder_version=\"3.0.106\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The Haus Restaurant, on the main street of Hahdnorf, is owned and operated by the Duffield family. We\'ve had the pleasure of working with the Duffield\'s on various projects over the past 25 years - including various hospitality and accommodation venues, and now the refurbishment of those same venues.</p>\n<p>The Haus hosts a lot of conferences and functions as well as provides catering off-site.</p>\n<p><strong>They\'ve just been awarded Venue Caterer of the Project Management, Cost Control, Town Planning</strong></p>\n<p>Hint: when you visit the restaurant make sure you check out the murals which have been stencilled on the walls - they tell a story of the history of Hahndorf. They show the ships arriving, residents tending to crops, a pear tree, and more.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"604,605,606,607,608\" gallery_orderby=\"rand\" gallery_captions=\",,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "The Haus Cafe+Bar+Kitchen", "", "inherit", "closed", "closed", "", "600-revision-v1", "", "", "2018-07-18 10:21:42", "2018-07-18 10:21:42", "", "600", "https://beyondink.alluredigitalmarketing.com.au/600-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1025", "1", "2018-07-18 10:35:05", "2018-07-18 10:35:05", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Rivercorp Monarto Apple Processing Facility</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row background_color=\"#F1F1F1\" _builder_version=\"3.0.106\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>This project was constructed to be the largest apple processing facility in the Southern hemisphere, based in Monarto, South Australia.</p>\n<p>Our involvement: Design, Project Management, Cost Control, Town Planning</p>\n<p>Builder: <a href=\"http://www.palumbo.com.au/about/\" target=\"_blank\" rel=\"noopener noreferrer\">Palumbo</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"631,632,633,634,635,636,637\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Rivercorp Monarto Apple Processing Facility", "", "inherit", "closed", "closed", "", "576-revision-v1", "", "", "2018-07-18 10:35:05", "2018-07-18 10:35:05", "", "576", "https://beyondink.alluredigitalmarketing.com.au/576-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1029", "1", "2018-07-18 10:38:24", "2018-07-18 10:38:24", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Barker Plaza Shopping Centre</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row background_color=\"#f1f1f1\" _builder_version=\"3.0.106\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The Barker Plaza Shopping Centre had become very tired and dated. Then with Aldi Supermarkets wanting to move into Mt Barker, in order to accommodate the new store, the property owner took the opportunity to give the whole shopping centre a revamp.</p>\n<p>Our involvement: Design, Project Management, Interior Design, Town Planning, Cost Control</p>\n<p>Builder: <a href=\"http://bellabuildanddesign.com.au/\" target=\"_blank\" rel=\"noopener noreferrer\">Bella Build &amp; Design</a></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"522,523,524,525\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Barker Plaza Shopping Centre", "", "inherit", "closed", "closed", "", "519-revision-v1", "", "", "2018-07-18 10:38:24", "2018-07-18 10:38:24", "", "519", "https://beyondink.alluredigitalmarketing.com.au/519-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1032", "1", "2018-07-18 10:41:54", "2018-07-18 10:41:54", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Crafers Residence</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row background_color=\"#f1f1f1\" _builder_version=\"3.0.106\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>This residential project included alterations and additions to the existing house.</p>\n<p><strong>Our Involvement: Design, Project Management, Cost Control, Town Planning</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235,250,246\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Crafers Residence", "", "inherit", "closed", "closed", "", "232-revision-v1", "", "", "2018-07-18 10:41:54", "2018-07-18 10:41:54", "", "232", "https://beyondink.alluredigitalmarketing.com.au/232-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1040", "1", "2018-07-18 10:48:34", "2018-07-18 10:48:34", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Echunga Residence</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row background_color=\"#f1f1f1\" _builder_version=\"3.0.106\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p><strong>Our Involvement: Design</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"358,359,360,361,362,363,364,365,366,367\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Echunga Residence", "", "inherit", "closed", "closed", "", "355-revision-v1", "", "", "2018-07-18 10:48:34", "2018-07-18 10:48:34", "", "355", "https://beyondink.alluredigitalmarketing.com.au/355-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1045", "1", "2018-07-18 10:52:13", "2018-07-18 10:52:13", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|40px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Adelaide Hills Residence</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row background_color=\"#f1f1f1\" _builder_version=\"3.0.106\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p><strong>Our Involvement: Design, Town Planning</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"326,327,328,329,330,331,332,333,334,335,336,337\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Adelaide Hills Residence", "", "inherit", "closed", "closed", "", "323-revision-v1", "", "", "2018-07-18 10:52:13", "2018-07-18 10:52:13", "", "323", "https://beyondink.alluredigitalmarketing.com.au/323-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1061", "1", "2018-07-18 11:00:15", "2018-07-18 11:00:15", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Rivercorp Monarto Apple Processing Facility</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#F1F1F1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>This project was constructed to be the largest apple processing facility in the Southern hemisphere, based in Monarto, South Australia.</p>\n<p><strong>Our involvement: Design, Project Management, Cost Control, Town Planning</strong></p>\n<p>Builder: <a href=\"http://www.palumbo.com.au/about/\" target=\"_blank\" rel=\"noopener noreferrer\">Palumbo</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"631,632,633,634,635,636,637\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Rivercorp Monarto Apple Processing Facility", "", "inherit", "closed", "closed", "", "576-revision-v1", "", "", "2018-07-18 11:00:15", "2018-07-18 11:00:15", "", "576", "https://beyondink.alluredigitalmarketing.com.au/576-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1049", "1", "2018-07-18 10:54:35", "2018-07-18 10:54:35", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>K1 Winery</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|24px|0px\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>We designed the winery and cellar door for Geoff Hardy and his family. It incorporates a large function area, administration spaces, and other facilities associated with the K1 Wine brand.</p>\n<p><strong>Our Involvement: Design, Town Planning</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"554,1007\" gallery_orderby=\"rand\" gallery_captions=\",\" posts_number=\"2\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "K1 Winery", "", "inherit", "closed", "closed", "", "550-revision-v1", "", "", "2018-07-18 10:54:35", "2018-07-18 10:54:35", "", "550", "https://beyondink.alluredigitalmarketing.com.au/550-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1052", "1", "2018-07-18 10:55:58", "2018-07-18 10:55:58", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>The Lane Vineyard</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>We\'ve been involved with the beautiful Lane Vineyard since the beginning - having designed it initially and then being involved in a number of improvements/additions that\'ve been made since then.</p>\n<p>The Lane Vineyard site includes the winery, cellar door and restaurant. The Lane host a lot of events and functions, and are a highly desired and popular wedding location.</p>\n<p><strong>Our involvement: Design, Town Planning, Project Management, Cost Control</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"2px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"585,587,588,590,591,592,595,593\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "The Lane Vineyard", "", "inherit", "closed", "closed", "", "580-revision-v1", "", "", "2018-07-18 10:55:58", "2018-07-18 10:55:58", "", "580", "https://beyondink.alluredigitalmarketing.com.au/580-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1060", "1", "2018-07-18 10:59:38", "2018-07-18 10:59:38", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>The Manna Motel of Hahndorf</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The Manna is part of the Hahndorf Accommodation Group, owned by the Duffield family.</p>\n<p>The site used to be \'The Marketplace in Hahndorf\' - not really a market, but more of a courtyard surrounded by shops. Now \'The Manna\' is a 4 star motel with 50 modern and stylish hotel rooms.</p>\n<p><strong>Our Involvement: Design, Project Management, Town Planning, Cost Control</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"646,647,648,649,650,651,652,653,654,655,656\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "The Manna Motel of Hahndorf", "", "inherit", "closed", "closed", "", "642-revision-v1", "", "", "2018-07-18 10:59:38", "2018-07-18 10:59:38", "", "642", "https://beyondink.alluredigitalmarketing.com.au/642-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1055", "1", "2018-07-18 10:57:26", "2018-07-18 10:57:26", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>The Haus Cafe+Bar+Kitchen</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The Haus Restaurant, on the main street of Hahdnorf, is owned and operated by the Duffield family. We\'ve had the pleasure of working with the Duffield\'s on various projects over the past 25 years - including various hospitality and accommodation venues, and now the refurbishment of those same venues.</p>\n<p>The Haus hosts a lot of conferences and functions as well as provides catering off-site, and have <span style=\"font-size: 18px;\">just been awarded Venue Caterer of the Year at the 2018 Savour Australia Restaurant and Catering Awards.</span></p>\n<p><strong>Our Involvement: Project Management, Cost Control, Town Planning</strong></p>\n<p>Hint: when you visit the restaurant make sure you check out the murals which have been stencilled on the walls - they tell a story of the history of Hahndorf. They show the ships arriving, residents tending to crops, a pear tree, and more.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"604,605,606,607,608\" gallery_orderby=\"rand\" gallery_captions=\",,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "The Haus Cafe+Bar+Kitchen", "", "inherit", "closed", "closed", "", "600-revision-v1", "", "", "2018-07-18 10:57:26", "2018-07-18 10:57:26", "", "600", "https://beyondink.alluredigitalmarketing.com.au/600-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1057", "1", "2018-07-18 10:57:56", "2018-07-18 10:57:56", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>The Haus Cafe+Bar+Kitchen</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The Haus Restaurant, on the main street of Hahdnorf, is owned and operated by the Duffield family. We\'ve had the pleasure of working with the Duffield\'s on various projects over the past 25 years - including various hospitality and accommodation venues, and now the refurbishment of those same venues.</p>\n<p>The Haus hosts a lot of conferences and functions as well as provides catering off-site, and have <span style=\"font-size: 18px;\">just been awarded Venue Caterer of the Year at the 2018 Savour Australia Restaurant and Catering Awards.</span></p>\n<p><strong>Our Involvement: Project Management, Cost Control, Town Planning</strong></p>\n<p>Hint: when you visit the restaurant make sure you check out the murals which have been stencilled on the walls - they tell a story of the history of Hahndorf. They show the ships arriving, residents tending to crops, a <a href=\"../the-manna-motel-of-hahndorf/\">pear tree</a>, and more.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"604,605,606,607,608\" gallery_orderby=\"rand\" gallery_captions=\",,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "The Haus Cafe+Bar+Kitchen", "", "inherit", "closed", "closed", "", "600-revision-v1", "", "", "2018-07-18 10:57:56", "2018-07-18 10:57:56", "", "600", "https://beyondink.alluredigitalmarketing.com.au/600-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1063", "1", "2018-07-18 11:00:51", "2018-07-18 11:00:51", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Barker Plaza Shopping Centre</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The Barker Plaza Shopping Centre had become very tired and dated. Then with Aldi Supermarkets wanting to move into Mt Barker, in order to accommodate the new store, the property owner took the opportunity to give the whole shopping centre a revamp.</p>\n<p><strong>Our Involvement: Design, Project Management, Interior Design, Town Planning, Cost Control</strong></p>\n<p>Builder: <a href=\"http://bellabuildanddesign.com.au/\" target=\"_blank\" rel=\"noopener noreferrer\">Bella Build &amp; Design</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"522,523,524,525\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Barker Plaza Shopping Centre", "", "inherit", "closed", "closed", "", "519-revision-v1", "", "", "2018-07-18 11:00:51", "2018-07-18 11:00:51", "", "519", "https://beyondink.alluredigitalmarketing.com.au/519-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1411", "1", "2018-07-24 12:15:06", "2018-07-24 12:15:06", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"5deg\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/North-East-Corner-Dulux-Gunmetal-Kinetic-1280x406.jpg\" custom_padding=\"2.2%|0px|94px|0px\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1983px\" custom_padding=\"76px|0px|12px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>About Us</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Intro Section\" _builder_version=\"3.0.92\" custom_padding=\"16px|0px|0|15px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"25px|0px|0|0px\" admin_label=\"Intro Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1400px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h1><strong>Design innovation. Building Excellence.</strong></h1>\r\n<span style=\"font-size: 18px;\">Established in 2006, we\'re a boutique design and construction company known for progressive and innovative design. </span>\r\n\r\n<span style=\"font-size: 18px;\">Our specialty is creating major regional projects which add value and vibrancy to communities. </span>\r\n\r\n<span style=\"font-size: 18px;\">Regardless of the size of the project - whether it be a renovation or extension, or a large-scale build - our streamlined budget management system ensures peace of mind for our clients from beginning to end.</span>\r\n\r\nOur recent projects include the design of the Wolf Blass Gallery and Museum in Hahndorf’s Main Street; and the redesign of the new world-class Murray Bridge Racing Club.\r\n\r\nOther past projects include landmark destinations such as The Manna Hotel, The Lane Winery, The Haus Restaurant, and Barker Plaza Shopping Centre.\r[/et_pb_text][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Commercial Projects\" url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Kensingtons-Garden-Residence.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\" animation_style=\"fade\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Residential Projects\" url=\"https://beyondink.alluredigitalmarketing.com.au/residential/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\" animation_style=\"fade\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Renovations\" url=\"https://beyondink.alluredigitalmarketing.com.au/restorations/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Hahndorf-Academy.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\" animation_style=\"fade\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Coming Soon\" url=\"https://beyondink.alluredigitalmarketing.com.au/coming-soon/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Murray-Bridge-Racing-Club.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\" animation_style=\"fade\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "closed", "closed", "", "211-revision-v1", "", "", "2018-07-24 12:15:06", "2018-07-24 12:15:06", "", "211", "https://beyondink.alluredigitalmarketing.com.au/211-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1065", "1", "2018-07-18 11:02:20", "2018-07-18 11:02:20", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"5deg\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/North-East-Corner-Dulux-Gunmetal-Kinetic-1280x406.jpg\" custom_padding=\"2.2%|0px|94px|0px\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1983px\" custom_padding=\"76px|0px|12px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>About Us</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Intro Section\" _builder_version=\"3.0.92\" custom_padding=\"16px|0px|0|15px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"25px|0px|0|0px\" admin_label=\"Intro Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1400px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<h1><strong>Design innovation. Building Excellence.</strong></h1>\n<p><span style=\"font-size: 18px;\">Established in 2006, we\'re a boutique design and construction company known for progressive and innovative design. </span></p>\n<p><span style=\"font-size: 18px;\">Our specialty is creating major regional projects which add value and vibrancy to communities. </span></p>\n<p><span style=\"font-size: 18px;\">Regardless of the size of the project - whether it be a renovation or extension, or a large-scale build - our streamlined budget management system ensures peace of mind for our clients from beginning to end.</span></p>\n<p>Our recent projects include the design of the Wolf Blass Gallery and Museum in Hahndorf’s Main Street; and the redesign of the new world-class Murray Bridge Racing Club.</p>\n<p>Other past projects include landmark destinations such as The Manna Hotel, The Lane Winery, The Haus Restaurant, and Barker Plaza Shopping Centre.</p>[/et_pb_text][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Commercial Projects\" url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Kensingtons-Garden-Residence.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\" animation_style=\"fade\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Residential Projects\" url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/https://beyondink.alluredigitalmarketing.com.au/residential/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\" animation_style=\"fade\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Renovations\" url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/https://beyondink.alluredigitalmarketing.com.au/residential/https://beyondink.alluredigitalmarketing.com.au/restorations/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Hahndorf-Academy.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\" animation_style=\"fade\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Coming Soon\" url=\"https://beyondink.alluredigitalmarketing.com.au/coming-soon/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Murray-Bridge-Racing-Club.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\" animation_style=\"fade\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "closed", "closed", "", "211-revision-v1", "", "", "2018-07-18 11:02:20", "2018-07-18 11:02:20", "", "211", "https://beyondink.alluredigitalmarketing.com.au/211-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1089", "1", "2018-07-19 07:56:29", "2018-07-19 07:56:29", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#ededed\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\" next_background_color=\"#ffffff\" parallax=\"on\"][et_pb_row admin_label=\"CTA Row\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" _builder_version=\"3.0.106\" parallax_1=\"on\" parallax_2=\"on\" parallax=\"on\"][et_pb_column type=\"1_2\"][et_pb_cta admin_label=\"Heading, Subheading &amp; CTA Button\" title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/contact/\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\" url_new_window=\"off\" button_icon_placement=\"right\"]\r\n\r\nWe\'re a boutique design and construction company - big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.\r\n\r\n[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|14px|0px\" prev_background_color=\"#ededed\" next_background_color=\"#535353\"][et_pb_row custom_padding=\"46px|0px|72px|0px\" custom_margin=\"-45px|||\" _builder_version=\"3.0.106\" custom_margin_phone=\"-25px|||\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"25px|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]\r\n<h2><strong>Commercial Projects. New Homes. Additions.</strong></h2>\r\n<h3><span style=\"color: #000000;\"><strong>Insightful design. Exemplary construction.</strong></span></h3>\r\nHaving a talented team of designers and project managers enables us to adopt an holistic approach when creating and delivering a comprehensive commercial and residential package that meets and exceed your needs.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"CTA Section\" background_color=\"#535353\" _builder_version=\"3.0.106\" custom_padding=\"21px||0|\" prev_background_color=\"#ffffff\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"Process Row\" custom_padding=\"55px||25px|\" _builder_version=\"3.0.106\" module_alignment=\"center\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Process\" title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]\r\n\r\n<span style=\"color: #ffffff;\">• Interior Design</span>\r\n<span style=\"color: #ffffff;\"> • Landcape Design</span>\r\n\r\n<span style=\"color: #ffffff;\">We\'re a commercial and residential design and construction company.</span>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Process\" title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]\r\n\r\n<span style=\"color: #ffffff;\">• Commercial</span>\r\n<span style=\"color: #ffffff;\"> • Residential</span>\r\n\r\n<span style=\"color: #ffffff;\">We\'re passionate about innovation to create the best possible space.</span>\r\n\r\n<span style=\"color: #ffffff;\"> </span>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Process\" title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]\r\n\r\n<span style=\"color: #ffffff;\">• Town Planning</span>\r\n<span style=\"color: #ffffff;\"> • Cost Control</span>\r\n\r\n<span style=\"color: #ffffff;\">We\'re committed to quality and value for money, delivering on time and on budget.</span>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"41px||0|\" prev_background_color=\"#535353\" next_background_color=\"#535353\"][et_pb_row custom_padding=\"27px|0px|62px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_3\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Barker-Plaza-Entrance-800x534.jpg\" show_in_lightbox=\"on\" align=\"center\" _builder_version=\"3.0.106\" custom_margin=\"||25px|\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-13-of-47-800x535.jpg\" show_in_lightbox=\"on\" align=\"center\" _builder_version=\"3.0.106\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533.jpg\" show_in_lightbox=\"on\" align=\"center\" _builder_version=\"3.0.106\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Works CTA Section\" background_color=\"#535353\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|0px|0px\" prev_background_color=\"#ffffff\" next_background_color=\"#9dd00f\"][et_pb_row admin_label=\"CTA Row\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0|0px|23px|0px\" custom_margin=\"||50px|\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" _builder_version=\"3.0.106\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_2\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/11-Walker-Street-HI-RES-1024x523.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_cta title=\"Our Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"0px|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]\r\n\r\n<span style=\"color: #ffffff;\">Our portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span>\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#9dd00f\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_margin=\"-50px||-50px|\" custom_padding=\"0|0px|0px|0px\" prev_background_color=\"#535353\" next_background_color=\"#ffffff\"][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\" prev_background_color=\"#9dd00f\"][et_pb_row admin_label=\"Subscription Row\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]\r\n\r\nSign up to keep up to date with what\'s happening at Beyond Ink.\r\n\r\n[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-07-19 07:56:29", "2018-07-19 07:56:29", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1088", "1", "2018-07-19 07:55:24", "2018-07-19 07:55:24", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#ededed\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\" next_background_color=\"#ffffff\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/North-East-Corner-Dulux-Gunmetal-Kinetic-800x254.jpg\" parallax=\"on\"][et_pb_row admin_label=\"CTA Row\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" _builder_version=\"3.0.106\" parallax_1=\"on\" parallax_2=\"on\" parallax=\"on\" bg_img_1=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/11-Walker-Street-HI-RES-1024x523.jpg\"][et_pb_column type=\"1_2\"][et_pb_cta admin_label=\"Heading, Subheading &amp; CTA Button\" title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/contact/\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]\r\n\r\nWe\'re a boutique design and construction company - big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.\r\n\r\n[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|14px|0px\" prev_background_color=\"#ededed\" next_background_color=\"#535353\"][et_pb_row custom_padding=\"46px|0px|72px|0px\" custom_margin=\"-45px|||\" _builder_version=\"3.0.106\" custom_margin_phone=\"-25px|||\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"25px|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]\r\n<h2><strong>Commercial Projects. New Homes. Additions.</strong></h2>\r\n<h3><span style=\"color: #000000;\"><strong>Insightful design. Exemplary construction.</strong></span></h3>\r\nHaving a talented team of designers and project managers enables us to adopt an holistic approach when creating and delivering a comprehensive commercial and residential package that meets and exceed your needs.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"CTA Section\" background_color=\"#535353\" _builder_version=\"3.0.106\" custom_padding=\"21px||0|\" prev_background_color=\"#ffffff\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"Process Row\" custom_padding=\"55px||25px|\" _builder_version=\"3.0.106\" module_alignment=\"center\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Process\" title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]\r\n\r\n<span style=\"color: #ffffff;\">• Interior Design</span>\r\n<span style=\"color: #ffffff;\"> • Landcape Design</span>\r\n\r\n<span style=\"color: #ffffff;\">We\'re a commercial and residential design and construction company.</span>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Process\" title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]\r\n\r\n<span style=\"color: #ffffff;\">• Commercial</span>\r\n<span style=\"color: #ffffff;\"> • Residential</span>\r\n\r\n<span style=\"color: #ffffff;\">We\'re passionate about innovation to create the best possible space.</span>\r\n\r\n<span style=\"color: #ffffff;\"> </span>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Process\" title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]\r\n\r\n<span style=\"color: #ffffff;\">• Town Planning</span>\r\n<span style=\"color: #ffffff;\"> • Cost Control</span>\r\n\r\n<span style=\"color: #ffffff;\">We\'re committed to quality and value for money, delivering on time and on budget.</span>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"41px||0|\" prev_background_color=\"#535353\" next_background_color=\"#535353\"][et_pb_row custom_padding=\"27px|0px|62px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_3\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Barker-Plaza-Entrance-800x534.jpg\" show_in_lightbox=\"on\" align=\"center\" _builder_version=\"3.0.106\" custom_margin=\"||25px|\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-13-of-47-800x535.jpg\" show_in_lightbox=\"on\" align=\"center\" _builder_version=\"3.0.106\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533.jpg\" show_in_lightbox=\"on\" align=\"center\" _builder_version=\"3.0.106\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Works CTA Section\" background_color=\"#535353\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|0px|0px\" prev_background_color=\"#ffffff\" next_background_color=\"#9dd00f\"][et_pb_row admin_label=\"CTA Row\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0|0px|23px|0px\" custom_margin=\"||50px|\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" _builder_version=\"3.0.106\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_2\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/11-Walker-Street-HI-RES-1024x523.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_cta title=\"Our Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"0px|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]\r\n\r\n<span style=\"color: #ffffff;\">Our portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span>\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#9dd00f\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_margin=\"-50px||-50px|\" custom_padding=\"0|0px|0px|0px\" prev_background_color=\"#535353\" next_background_color=\"#ffffff\"][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\" prev_background_color=\"#9dd00f\"][et_pb_row admin_label=\"Subscription Row\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]\r\n\r\nSign up to keep up to date with what\'s happening at Beyond Ink.\r\n\r\n[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-07-19 07:55:24", "2018-07-19 07:55:24", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1087", "1", "2018-07-19 03:37:15", "2018-07-19 03:37:15", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#ededed\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\" next_background_color=\"#ffffff\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/North-East-Corner-Dulux-Gunmetal-Kinetic-800x254.jpg\" parallax=\"on\"][et_pb_row admin_label=\"CTA Row\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" _builder_version=\"3.0.106\" parallax_1=\"on\" parallax_2=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Entry-Portal-2-800x381.jpg\" parallax=\"on\" bg_img_1=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/11-Walker-Street-HI-RES-1024x523.jpg\"][et_pb_column type=\"1_2\"][et_pb_cta admin_label=\"Heading, Subheading &amp; CTA Button\" title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/contact/\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]\r\n\r\nWe\'re a boutique design and construction company - big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.\r\n\r\n[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|14px|0px\" prev_background_color=\"#ededed\" next_background_color=\"#535353\"][et_pb_row custom_padding=\"46px|0px|72px|0px\" custom_margin=\"-45px|||\" _builder_version=\"3.0.106\" custom_margin_phone=\"-25px|||\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"25px|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]\r\n<h2><strong>Commercial Projects. New Homes. Additions.</strong></h2>\r\n<h3><span style=\"color: #000000;\"><strong>Insightful design. Exemplary construction.</strong></span></h3>\r\nHaving a talented team of designers and project managers enables us to adopt an holistic approach when creating and delivering a comprehensive commercial and residential package that meets and exceed your needs.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"CTA Section\" background_color=\"#535353\" _builder_version=\"3.0.106\" custom_padding=\"21px||0|\" prev_background_color=\"#ffffff\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"Process Row\" custom_padding=\"55px||25px|\" _builder_version=\"3.0.106\" module_alignment=\"center\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Process\" title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]\r\n\r\n<span style=\"color: #ffffff;\">• Interior Design</span>\r\n<span style=\"color: #ffffff;\"> • Landcape Design</span>\r\n\r\n<span style=\"color: #ffffff;\">We\'re a commercial and residential design and construction company.</span>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Process\" title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]\r\n\r\n<span style=\"color: #ffffff;\">• Commercial</span>\r\n<span style=\"color: #ffffff;\"> • Residential</span>\r\n\r\n<span style=\"color: #ffffff;\">We\'re passionate about innovation to create the best possible space.</span>\r\n\r\n<span style=\"color: #ffffff;\"> </span>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Process\" title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]\r\n\r\n<span style=\"color: #ffffff;\">• Town Planning</span>\r\n<span style=\"color: #ffffff;\"> • Cost Control</span>\r\n\r\n<span style=\"color: #ffffff;\">We\'re committed to quality and value for money, delivering on time and on budget.</span>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"41px||0|\" prev_background_color=\"#535353\" next_background_color=\"#535353\"][et_pb_row custom_padding=\"27px|0px|62px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_3\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Barker-Plaza-Entrance-800x534.jpg\" show_in_lightbox=\"on\" align=\"center\" _builder_version=\"3.0.106\" custom_margin=\"||25px|\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-13-of-47-800x535.jpg\" show_in_lightbox=\"on\" align=\"center\" _builder_version=\"3.0.106\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533.jpg\" show_in_lightbox=\"on\" align=\"center\" _builder_version=\"3.0.106\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Our Works CTA Section\" background_color=\"#535353\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|0px|0px\" prev_background_color=\"#ffffff\" next_background_color=\"#9dd00f\"][et_pb_row admin_label=\"CTA Row\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0|0px|23px|0px\" custom_margin=\"||50px|\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" _builder_version=\"3.0.106\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_2\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/11-Walker-Street-HI-RES-1024x523.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_cta title=\"Our Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"0px|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]\r\n\r\n<span style=\"color: #ffffff;\">Our portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span>\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#9dd00f\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_margin=\"-50px||-50px|\" custom_padding=\"0|0px|0px|0px\" prev_background_color=\"#535353\" next_background_color=\"#ffffff\"][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\" prev_background_color=\"#9dd00f\"][et_pb_row admin_label=\"Subscription Row\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]\r\n\r\nSign up to keep up to date with what\'s happening at Beyond Ink.\r\n\r\n[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-07-19 03:37:15", "2018-07-19 03:37:15", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1069", "1", "2018-07-18 11:10:18", "2018-07-18 11:10:18", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" background_position=\"top_center\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" background_position_2=\"center\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/contact/\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading &amp; CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]We\'re a boutique design and construction company - big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.\r\n[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"off\" parallax_method=\"on\" background_position=\"center\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|14px|0px\"][et_pb_row custom_padding=\"46px|0px|72px|0px\" custom_margin=\"-45px|||\" _builder_version=\"3.0.106\" custom_margin_phone=\"-25px|||\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"25px|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]\r\n<h2><strong>Commercial Projects. New Homes. Additions.</strong></h2>\r\n<h3><span style=\"color: #000000;\"><strong>Insightful design. Exemplary construction.</strong></span></h3>\r\nHaving a talented team of designers and project managers enables us to adopt an holistic approach when creating and delivering a comprehensive commercial and residential package that meets and exceed your needs.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#535353\" admin_label=\"CTA Section\" _builder_version=\"3.0.106\" custom_padding=\"21px||0|\"][et_pb_row custom_padding=\"55px||25px|\" admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<span style=\"color: #ffffff;\">• Interior Design</span>\r\n<span style=\"color: #ffffff;\"> • Landcape Design</span>\r\n\r\n<span style=\"color: #ffffff;\">We\'re a commercial and residential design and construction company.</span>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<span style=\"color: #ffffff;\">• Commercial</span>\r\n<span style=\"color: #ffffff;\"> • Residential</span>\r\n\r\n<span style=\"color: #ffffff;\">We\'re passionate about innovation to create the best possible space.</span>\r\n\r\n<span style=\"color: #ffffff;\"> </span>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<span style=\"color: #ffffff;\">• Town Planning</span>\r\n<span style=\"color: #ffffff;\"> • Cost Control</span>\r\n\r\n<span style=\"color: #ffffff;\">We\'re committed to quality and value for money, delivering on time and on budget.</span>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"41px||0|\"][et_pb_row custom_padding=\"27px|0px|62px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Barker-Plaza-Entrance-800x534.jpg\" show_in_lightbox=\"on\" align=\"center\" _builder_version=\"3.0.106\" custom_margin=\"||25px|\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-13-of-47-800x535.jpg\" show_in_lightbox=\"on\" align=\"center\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Bennett-Street-Carrickalinga_HighRes_4K_1-800x533.jpg\" show_in_lightbox=\"on\" align=\"center\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#535353\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0|0px|23px|0px\" custom_margin=\"||50px|\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/11-Walker-Street-HI-RES-1024x523.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"0px|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]<span style=\"color: #ffffff;\">Our portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_margin=\"-50px||-50px|\" custom_padding=\"0|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]Sign up to keep up to date with what\'s happening at Beyond Ink.\r\n[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-07-18 11:10:18", "2018-07-18 11:10:18", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1071", "1", "2018-07-18 11:11:52", "2018-07-18 11:11:52", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"5deg\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/North-East-Corner-Dulux-Gunmetal-Kinetic-1280x406.jpg\" custom_padding=\"2.2%|0px|94px|0px\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1983px\" custom_padding=\"76px|0px|12px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>About Us</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Intro Section\" _builder_version=\"3.0.92\" custom_padding=\"16px|0px|0|15px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"25px|0px|0|0px\" admin_label=\"Intro Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1400px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]\r\n<h1><strong>Design innovation. Building Excellence.</strong></h1>\r\n<span style=\"font-size: 18px;\">Established in 2006, we\'re a boutique design and construction company known for progressive and innovative design. </span>\r\n\r\n<span style=\"font-size: 18px;\">Our specialty is creating major regional projects which add value and vibrancy to communities. </span>\r\n\r\n<span style=\"font-size: 18px;\">Regardless of the size of the project - whether it be a renovation or extension, or a large-scale build - our streamlined budget management system ensures peace of mind for our clients from beginning to end.</span>\r\n\r\nOur recent projects include the design of the Wolf Blass Gallery and Museum in Hahndorf’s Main Street; and the redesign of the new world-class Murray Bridge Racing Club.\r\n\r\nOther past projects include landmark destinations such as The Manna Hotel, The Lane Winery, The Haus Restaurant, and Barker Plaza Shopping Centre.\r\n\r\n[/et_pb_text][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Commercial Projects\" url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Kensingtons-Garden-Residence.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\" animation_style=\"fade\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Residential Projects\" url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/https://beyondink.alluredigitalmarketing.com.au/residential/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\" animation_style=\"fade\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Renovations\" url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/https://beyondink.alluredigitalmarketing.com.au/residential/https://beyondink.alluredigitalmarketing.com.au/restorations/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Hahndorf-Academy.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\" animation_style=\"fade\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Coming Soon\" url=\"https://beyondink.alluredigitalmarketing.com.au/coming-soon/\" image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Murray-Bridge-Racing-Club.jpg\" box_shadow_style_image=\"preset3\" _builder_version=\"3.0.106\" text_orientation=\"center\" animation_style=\"fade\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "inherit", "closed", "closed", "", "211-revision-v1", "", "", "2018-07-18 11:11:52", "2018-07-18 11:11:52", "", "211", "https://beyondink.alluredigitalmarketing.com.au/211-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1420", "1", "2018-07-24 12:25:07", "2018-07-24 12:25:07", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>K1 Winery</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|24px|0px\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>We designed the K1 Winery and cellar door for Geoff Hardy and his family.</p>\n<p>It incorporates a large function area, administration spaces, and other facilities associated with the K1 Wine brand.</p>\n<p><strong>Our Involvement: Design, Town Planning</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"554,1007\" gallery_orderby=\"rand\" gallery_captions=\",\" posts_number=\"2\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" module_class=\"centerGallery \"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "K1 Winery", "", "inherit", "closed", "closed", "", "550-revision-v1", "", "", "2018-07-24 12:25:07", "2018-07-24 12:25:07", "", "550", "https://beyondink.alluredigitalmarketing.com.au/550-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1074", "1", "2018-07-18 11:14:00", "2018-07-18 11:14:00", "<p>[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"5deg\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705-e1525939024788.jpg\" custom_padding=\"2.2%|0px|94px|0px\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1983px\" custom_padding=\"76px|0px|12px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]</p><h1>Contact Us</h1><p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Contact Section\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|100px|0\"][et_pb_row custom_padding=\"28px|0px|27px|0px\" admin_label=\"Message Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form email=\"admin@beyondink.com.au\" success_message=\"Your message has been sent!\" form_background_color=\"rgba(26,26,26,0.08)\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.106\" title_font=\"||||||||\" form_field_font=\"Muli|600|||||||\" form_field_font_size=\"16px\" form_field_text_color=\"rgba(0,0,0,0.6)\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#000000\" button_border_width=\"10px\" button_border_color=\"#000000\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Subject\" field_title=\"Subject\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"3.0.92\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.106\"]</p><h4 style=\"text-align: center;\">Beyond Ink</h4><p style=\"text-align: center;\"><strong>Address:</strong> 75 Mount Barker Road Hahndorf SA 5245<br /><strong>Phone:</strong> 08 8388 1179<br /><strong>Email: </strong><a href=\"mailto:admin@beyondink.com.au\" target=\"_blank\" rel=\"noopener noreferrer\">admin@beyondink.com.au</a></p><p style=\"text-align: center;\">[/et_pb_text][et_pb_divider _builder_version=\"3.0.106\" max_width=\"98%\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"1564px\" custom_padding=\"1px|0px|0|0px\" custom_margin=\"|||\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"302,252,182,333\" gallery_captions=\",,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" hover_overlay_color=\"rgba(255,255,255,0.63)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section]</p>", "Contact", "", "inherit", "closed", "closed", "", "102-autosave-v1", "", "", "2018-07-18 11:14:00", "2018-07-18 11:14:00", "", "102", "https://beyondink.alluredigitalmarketing.com.au/102-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1073", "1", "2018-07-18 11:13:33", "2018-07-18 11:13:33", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#cccccc\" background_color_gradient_end=\"#9dd00f\" background_color_gradient_direction=\"5deg\" background_color_gradient_end_position=\"64%\" custom_padding=\"2.2%|0px|41px|0px\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1983px\" custom_padding=\"0|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Our Projects</h1>\r\n<span style=\"color: #ffffff;\">From major regional developments, to grand home designs - you can feel at ease with our beginning-to-end design, construction, and project management expertise.</span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_position=\"top_center\" custom_padding=\"0|0px|26px|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.106\"][/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"51px|0px|27px|0px\" make_equal=\"on\" background_color_2=\"#f3f3f3\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Front-Entry-Portal-Dulux-Gunmetal-Kinetic-2.jpg\" show_bottom_space=\"off\" _builder_version=\"3.0.106\" custom_padding=\"|||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Commercial Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/\" button_text=\"Discover Commercial Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph &amp; CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]\r\n\r\nOur commercial portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#f3f3f3\" background_color_2=\"#f3f3f3\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Residential Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/residential/\" button_text=\"Discover Residential Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph &amp; CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]\r\n\r\nAs residential builders in Adelaide, we\'ve designed and built dozens of beautiful homes in South Australia. With our expertise and exemplary construction experience, we can build you a dream home beyond your expectations.\r\n\r\n[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Carrickalinga-House.jpg\" _builder_version=\"3.0.106\" custom_margin=\"|||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_2=\"#f3f3f3\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-2.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Renovations\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/restorations/\" button_text=\"Discover Renovation Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph &amp; CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]\r\n\r\nNo renovation is too difficult for our team. We can completely transform your existing home or site to your ideal specifications, whilst ensuring your project is on time and on budget.\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#f3f3f3\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Coming Soon\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/coming-soon/\" button_text=\"Discover Work In Progress\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph &amp; CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]\r\n\r\nOur team is always working on a number of commercial and residential projects in South Australia and beyond.\r\n\r\n[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/North-East-Corner-Dulux-Gunmetal-Kinetic-Sm.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "Projects", "", "inherit", "closed", "closed", "", "120-revision-v1", "", "", "2018-07-18 11:13:33", "2018-07-18 11:13:33", "", "120", "https://beyondink.alluredigitalmarketing.com.au/120-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1240", "1", "2018-07-23 10:52:04", "2018-07-23 10:52:04", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"194deg\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705-e1525939024788.jpg\" custom_padding=\"9.8%|0px|123px|0px\"][et_pb_row custom_padding=\"0|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Commercial Projects</h1>\n<span style=\"color: #ffffff;\">We specialise in major regional developments - from design and construction to entire management of your project.</span> [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"50px|0px|50px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Lane-Winery.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-lane-vineyard/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">The Lane Winery</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Barker-Plaza-Entrance-800x534.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/barker-plaza/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">Barker Plaza Shopping Centre</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Hahndorf.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-haus-cafebarkitchen/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">The Haus Cafe+Bar+Kitchen</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Studio-Apartments.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-manna-apartments-2/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">The Haus Studio Apartments</span> [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\" custom_padding=\"||50px|\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/K1-Winery-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/k1-winery/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">K1 Winery</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/55708_165645590125507_7049646_o.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-manna-motel-of-hahndorf/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">The Manna Motel of Hahndorf</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Inavogue-Showroom-2-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/inavogue-showroom/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">Inavogue Showroom</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Pulteney-Plaza-Apartments-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/pulteney-plaza-adelaide/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">Pulteney Plaza Apartments</span> [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|50px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Rivercorp-Monarto-Apple-Processing-Plant.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/rivercorp-monarto-apple-processing-facility/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">Rivercorp Monarto Apple Processing Facility</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Elders-Strathalbyn-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/elders-strathalbyn/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">Elders Strathalbyn</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Commercial", "", "inherit", "closed", "closed", "", "175-revision-v1", "", "", "2018-07-23 10:52:04", "2018-07-23 10:52:04", "", "175", "https://beyondink.alluredigitalmarketing.com.au/175-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1235", "1", "2018-07-23 10:47:47", "2018-07-23 10:47:47", "[et_pb_row custom_padding=\"41px|0px|0|0px\" _builder_version=\"3.0.106\" template_type=\"row\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Bell-Crt-4-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/adelaide-hills-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<span style=\"font-size: 18px;\">Adelaide Hills Residence </span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/aldgate-renovation/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<span style=\"font-size: 18px;\">Aldgate Renovation </span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Battunga-Residence.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/battunga-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<span style=\"font-size: 18px;\">Battunga Residence</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6211-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/bridgewater-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<span style=\"font-size: 18px;\">Bridgewater Residence</span>\r[/et_pb_text][/et_pb_column][/et_pb_row]", "Projects Summary", "", "publish", "closed", "closed", "", "projects-summary", "", "", "2018-07-23 10:47:47", "2018-07-23 10:47:47", "", "0", "https://beyondink.alluredigitalmarketing.com.au/et_pb_layout/projects-summary/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("1249", "1", "2018-07-24 05:06:40", "2018-07-24 05:06:40", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Racing at Gifford Hill - Murray Bridge Racing Club</h1>\n<p><span style=\"color: #ffffff;\"></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"Our projects range from major regional developments, to grand home designs. You can feel at ease with our beginning-to-end design, construction, and project management expertise.\" _builder_version=\"3.0.106\" custom_padding=\"30px|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>We\'re proud to be responsible for the redesign and project management of the new $20 million state-of-the-art Murray Bridge Racing Club at Gifford Hill.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/North-East-Corner-Dulux-Gunmetal-Kinetic-800x254.jpg\" align=\"center\" _builder_version=\"3.0.106\" custom_margin=\"25px|||\"][/et_pb_image][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" align=\"center\" _builder_version=\"3.0.106\" custom_margin=\"||25px|\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>Set to open early 2019, this world-class racetrack development - with function centre, food and beverage outlets, and <g class=\"gr_ gr_5 gr-alert gr_spell gr_inline_cards gr_run_anim ContextualSpelling ins-del multiReplace\" id=\"5\" data-gr-id=\"5\">raceday</g> facilities - is located just an hour\'s drive from Adelaide.</p>\n<p><strong>Our Involvement: Redesign of Project, Interior Design, Cost Control, Project Management </strong></p>\n<p>Builder: <a href=\"https://marshallbrougham.com.au\" target=\"_blank\" rel=\"noopener noreferrer\">Marshall &amp; Brougham</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][et_pb_gallery gallery_ids=\"144,200,726,727\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" custom_margin=\"25px|||\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Racing at Gifford Hill - Murray Bridge Racing Club", "", "inherit", "closed", "closed", "", "718-revision-v1", "", "", "2018-07-24 05:06:40", "2018-07-24 05:06:40", "", "718", "https://beyondink.alluredigitalmarketing.com.au/718-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1246", "1", "2018-07-24 04:58:00", "2018-07-24 04:58:00", "", "Wolf Blass Gallery & Museum", "", "inherit", "open", "closed", "", "wolf-blass", "", "", "2018-07-24 04:59:00", "2018-07-24 04:59:00", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Wolf-Blass.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1247", "1", "2018-07-24 04:58:28", "2018-07-24 04:58:28", "", "Duttons Service Centre", "", "inherit", "open", "closed", "", "duttons", "", "", "2018-07-24 04:59:35", "2018-07-24 04:59:35", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Duttons.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1238", "1", "2018-07-23 10:50:06", "2018-07-23 10:50:06", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"194deg\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/IMG_6211-1280x853.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1143px\" custom_padding=\"0|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Residential Projects</h1>\r\n<span style=\"color: #ffffff;\">Designing and building beautiful homes in the Adelaide Hills area since 2006.</span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"41px|0px|50px|0px\" _builder_version=\"3.0.106\" custom_margin=\"|||\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Bell-Crt-4-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/adelaide-hills-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"-2px|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<span style=\"font-size: 18px;\">Adelaide Hills Residence </span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/aldgate-renovation/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<span style=\"font-size: 18px;\">Aldgate Renovation </span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Battunga-Residence.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/battunga-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<span style=\"font-size: 18px;\">Battunga Residence</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6211-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/bridgewater-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<span style=\"font-size: 18px;\">Bridgewater Residence</span>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"1px|0px|50px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/6.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/bridgewater-rammed-earth-renovation/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<span style=\"font-size: 18px;\">Bridgewater Rammed Earth Renovation</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/The-Latch-Atkinson-Rd-Crafers-West-5-800x532.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/crafers-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<span style=\"font-size: 18px;\">Crafers Residence</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Echunga-Residence.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/echunga-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<span style=\"font-size: 18px;\">Echunga Residence</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Jupiter-Creek-Residence.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/jupiter-creek-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<span style=\"font-size: 18px;\">Jupiter Creek Residence</span>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|50px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence-6.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/kensington-gardens/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<span style=\"font-size: 18px;\">Kensington Gardens Residence</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/IMG_0623-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/littlehampton-renovation-additions/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<span style=\"font-size: 18px;\">Littlehampton Renovation and Additions</span><span style=\"font-size: 18px;\"> </span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/14-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/totness-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<span style=\"font-size: 18px;\">Totness Residence</span>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Residential", "", "inherit", "closed", "closed", "", "152-revision-v1", "", "", "2018-07-23 10:50:06", "2018-07-23 10:50:06", "", "152", "https://beyondink.alluredigitalmarketing.com.au/152-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1078", "1", "2018-07-18 11:19:27", "2018-07-18 11:19:27", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"194deg\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/IMG_6211-1280x853.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1143px\" custom_padding=\"0|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Residential Projects</h1>\r\n<span style=\"color: #ffffff;\">Designing and building beautiful homes in the Adelaide Hills area since 2006.</span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"41px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Bell-Crt-4-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/adelaide-hills-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]\r\n\r\n<span style=\"font-size: 18px;\">Adelaide Hills Residence </span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/aldgate-renovation/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]\r\n\r\n<span style=\"font-size: 18px;\">Aldgate Renovation </span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Battunga-Residence.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/battunga-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]\r\n\r\n<span style=\"font-size: 18px;\">Battunga Residence</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6211-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/bridgewater-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]\r\n\r\n<span style=\"font-size: 18px;\">Bridgewater Residence</span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"1px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/6.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/bridgewater-rammed-earth-renovation/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]\r\n\r\n<span style=\"font-size: 18px;\">Bridgewater Rammed Earth Renovation</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/The-Latch-Atkinson-Rd-Crafers-West-5-800x532.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/crafers-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]\r\n\r\n<span style=\"font-size: 18px;\">Crafers Residence</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Echunga-Residence.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/echunga-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]\r\n\r\n<span style=\"font-size: 18px;\">Echunga Residence</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Jupiter-Creek-Residence.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/jupiter-creek-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]\r\n\r\n<span style=\"font-size: 18px;\">Jupiter Creek Residence</span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence-6.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/kensington-gardens/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]\r\n\r\n<span style=\"font-size: 18px;\">Kensington Gardens Residence</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/IMG_0623-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/littlehampton-renovation-additions/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]\r\n\r\n<span style=\"font-size: 18px;\">Littlehampton Renovation and Additions</span><span style=\"font-size: 18px;\"> </span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/14-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/totness-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]\r\n\r\n<span style=\"font-size: 18px;\">Totness Residence</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Residential", "", "inherit", "closed", "closed", "", "152-revision-v1", "", "", "2018-07-18 11:19:27", "2018-07-18 11:19:27", "", "152", "https://beyondink.alluredigitalmarketing.com.au/152-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1079", "1", "2018-07-18 11:20:57", "2018-07-18 11:20:57", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Renovations</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"50px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0182-800x533-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/hahndorf-academy/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]\r\n\r\n<span style=\"font-size: 18px;\">Hahndorf Academy</span>\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6211-800x533-3.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/skilly-hills-function-centre-restoration-project/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]\r\n\r\n<span style=\"font-size: 18px;\">Skilly Hills Function Centre and Renovation Project</span>\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Renovations", "", "inherit", "closed", "closed", "", "204-revision-v1", "", "", "2018-07-18 11:20:57", "2018-07-18 11:20:57", "", "204", "https://beyondink.alluredigitalmarketing.com.au/204-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1168", "1", "2018-07-23 09:29:19", "2018-07-23 09:29:19", "", "5 Bennett Street Carrickalinga_HighRes_4K_50 (800x533)", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_50-800x533", "", "", "2018-07-23 09:29:19", "2018-07-23 09:29:19", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_50-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1133", "1", "2018-07-23 09:26:01", "2018-07-23 09:26:01", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_12-533x800", "", "", "2018-07-23 09:31:40", "2018-07-23 09:31:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_12-533x800.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1134", "1", "2018-07-23 09:26:06", "2018-07-23 09:26:06", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_13-800x533", "", "", "2018-07-23 09:31:37", "2018-07-23 09:31:37", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_13-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1135", "1", "2018-07-23 09:26:11", "2018-07-23 09:26:11", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_14-800x533", "", "", "2018-07-23 09:31:34", "2018-07-23 09:31:34", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_14-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1136", "1", "2018-07-23 09:26:19", "2018-07-23 09:26:19", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_15-800x533", "", "", "2018-07-23 09:31:31", "2018-07-23 09:31:31", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_15-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1137", "1", "2018-07-23 09:26:22", "2018-07-23 09:26:22", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_16-800x533", "", "", "2018-07-23 09:31:28", "2018-07-23 09:31:28", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_16-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1138", "1", "2018-07-23 09:26:26", "2018-07-23 09:26:26", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_17-800x533", "", "", "2018-07-23 09:31:25", "2018-07-23 09:31:25", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_17-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1139", "1", "2018-07-23 09:26:31", "2018-07-23 09:26:31", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_18-800x533", "", "", "2018-07-23 09:31:19", "2018-07-23 09:31:19", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_18-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1140", "1", "2018-07-23 09:26:37", "2018-07-23 09:26:37", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_19-800x533", "", "", "2018-07-23 09:31:16", "2018-07-23 09:31:16", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_19-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1141", "1", "2018-07-23 09:26:41", "2018-07-23 09:26:41", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_21-533x800", "", "", "2018-07-23 09:31:12", "2018-07-23 09:31:12", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_21-533x800.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1142", "1", "2018-07-23 09:26:49", "2018-07-23 09:26:49", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_22-800x533", "", "", "2018-07-23 09:31:07", "2018-07-23 09:31:07", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_22-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1143", "1", "2018-07-23 09:26:53", "2018-07-23 09:26:53", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_23-800x533", "", "", "2018-07-23 09:31:03", "2018-07-23 09:31:03", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_23-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1144", "1", "2018-07-23 09:26:58", "2018-07-23 09:26:58", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_24-800x533", "", "", "2018-07-23 09:30:59", "2018-07-23 09:30:59", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_24-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1145", "1", "2018-07-23 09:27:06", "2018-07-23 09:27:06", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_25-800x533", "", "", "2018-07-23 09:30:55", "2018-07-23 09:30:55", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_25-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1146", "1", "2018-07-23 09:27:09", "2018-07-23 09:27:09", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_26-800x533", "", "", "2018-07-23 09:30:52", "2018-07-23 09:30:52", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_26-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1147", "1", "2018-07-23 09:27:17", "2018-07-23 09:27:17", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_27-800x533", "", "", "2018-07-23 09:30:45", "2018-07-23 09:30:45", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_27-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1148", "1", "2018-07-23 09:27:22", "2018-07-23 09:27:22", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_28-800x533", "", "", "2018-07-23 09:30:41", "2018-07-23 09:30:41", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_28-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1149", "1", "2018-07-23 09:27:27", "2018-07-23 09:27:27", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_29-800x533", "", "", "2018-07-23 09:30:38", "2018-07-23 09:30:38", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_29-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1150", "1", "2018-07-23 09:27:30", "2018-07-23 09:27:30", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_30-800x533", "", "", "2018-07-23 09:30:34", "2018-07-23 09:30:34", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_30-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1151", "1", "2018-07-23 09:27:35", "2018-07-23 09:27:35", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_33-800x533", "", "", "2018-07-23 09:30:31", "2018-07-23 09:30:31", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_33-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1152", "1", "2018-07-23 09:27:43", "2018-07-23 09:27:43", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_34-800x533", "", "", "2018-07-23 09:30:28", "2018-07-23 09:30:28", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_34-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1153", "1", "2018-07-23 09:27:48", "2018-07-23 09:27:48", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_35-800x533", "", "", "2018-07-23 09:30:24", "2018-07-23 09:30:24", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_35-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1154", "1", "2018-07-23 09:27:55", "2018-07-23 09:27:55", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_36-800x533", "", "", "2018-07-23 09:30:20", "2018-07-23 09:30:20", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_36-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1155", "1", "2018-07-23 09:28:00", "2018-07-23 09:28:00", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_37-800x533", "", "", "2018-07-23 09:30:05", "2018-07-23 09:30:05", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_37-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1156", "1", "2018-07-23 09:28:07", "2018-07-23 09:28:07", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_38-800x533", "", "", "2018-07-23 09:30:03", "2018-07-23 09:30:03", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_38-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1157", "1", "2018-07-23 09:28:10", "2018-07-23 09:28:10", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_39-800x533", "", "", "2018-07-23 09:29:58", "2018-07-23 09:29:58", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_39-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1158", "1", "2018-07-23 09:28:17", "2018-07-23 09:28:17", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_40-800x533", "", "", "2018-07-23 09:29:55", "2018-07-23 09:29:55", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_40-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1159", "1", "2018-07-23 09:28:21", "2018-07-23 09:28:21", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_41-800x533", "", "", "2018-07-23 09:29:52", "2018-07-23 09:29:52", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_41-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1160", "1", "2018-07-23 09:28:34", "2018-07-23 09:28:34", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_42-800x533", "", "", "2018-07-23 09:29:48", "2018-07-23 09:29:48", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_42-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1161", "1", "2018-07-23 09:28:38", "2018-07-23 09:28:38", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_43-800x533", "", "", "2018-07-23 09:29:43", "2018-07-23 09:29:43", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_43-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1162", "1", "2018-07-23 09:28:44", "2018-07-23 09:28:44", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_44-800x533", "", "", "2018-07-23 09:29:41", "2018-07-23 09:29:41", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_44-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1163", "1", "2018-07-23 09:28:50", "2018-07-23 09:28:50", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_45-800x533", "", "", "2018-07-23 09:29:36", "2018-07-23 09:29:36", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_45-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1164", "1", "2018-07-23 09:28:56", "2018-07-23 09:28:56", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_46-800x533", "", "", "2018-07-23 09:29:35", "2018-07-23 09:29:35", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_46-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1165", "1", "2018-07-23 09:29:00", "2018-07-23 09:29:00", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_47-800x533", "", "", "2018-07-23 09:29:33", "2018-07-23 09:29:33", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_47-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1166", "1", "2018-07-23 09:29:07", "2018-07-23 09:29:07", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_48-800x533", "", "", "2018-07-23 09:29:27", "2018-07-23 09:29:27", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_48-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1167", "1", "2018-07-23 09:29:12", "2018-07-23 09:29:12", "", "5 Bennett Street Carrickalinga_HighRes_4K_49 (800x533)", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_49-800x533", "", "", "2018-07-23 09:29:12", "2018-07-23 09:29:12", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_49-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1169", "1", "2018-07-23 09:29:27", "2018-07-23 09:29:27", "", "5 Bennett Street Carrickalinga_HighRes_4K_51 (800x533)", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_51-800x533", "", "", "2018-07-23 09:29:27", "2018-07-23 09:29:27", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_51-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1170", "1", "2018-07-23 09:29:32", "2018-07-23 09:29:32", "", "5 Bennett Street Carrickalinga_HighRes_4K_52 (800x533)", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_52-800x533", "", "", "2018-07-23 09:29:32", "2018-07-23 09:29:32", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_52-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1171", "1", "2018-07-23 09:33:03", "2018-07-23 09:33:03", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Carrickalinga Beach House</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"246,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Carrickalinga Beach House", "", "inherit", "closed", "closed", "", "1119-revision-v1", "", "", "2018-07-23 09:33:03", "2018-07-23 09:33:03", "", "1119", "https://beyondink.alluredigitalmarketing.com.au/1119-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1176", "1", "2018-07-23 09:41:30", "2018-07-23 09:41:30", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Hahndorf Residence</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p><strong>Our Involvement: Design, Town Planning</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Hahndorf Residence", "", "publish", "closed", "closed", "", "hahndorf-residence", "", "", "2018-07-23 09:50:09", "2018-07-23 09:50:09", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=1176", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("1177", "1", "2018-07-23 09:41:30", "2018-07-23 09:41:30", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#9dd00f\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"27px|0px|11px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Crafers Residence</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\" prev_background_color=\"#9dd00f\" next_background_color=\"#000000\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235,250,246\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\" prev_background_color=\"#000000\"][et_pb_fullwidth_image _builder_version=\"3.0.106\" /][/et_pb_section]", "Hahndorf Residence", "", "inherit", "closed", "closed", "", "1176-revision-v1", "", "", "2018-07-23 09:41:30", "2018-07-23 09:41:30", "", "1176", "https://beyondink.alluredigitalmarketing.com.au/1176-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1391", "1", "2018-07-24 11:46:07", "2018-07-24 11:46:07", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Carrickalinga Beach House</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p><strong>Our involvement: Design, Interior Design, Town Planning, Landscape Design</strong></p>\n<p>Builder: <a href=\"https://www.endurobuilders.com.au/about-us/\" target=\"_blank\" rel=\"noopener noreferrer\">Enduro Builders</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1125,1130,1132,1143,1149,1151,1152,1153,1154,1155,1157,1160,1161,1166\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,,\" posts_number=\"48\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Carrickalinga Beach House", "", "inherit", "closed", "closed", "", "1119-revision-v1", "", "", "2018-07-24 11:46:07", "2018-07-24 11:46:07", "", "1119", "https://beyondink.alluredigitalmarketing.com.au/1119-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1174", "1", "2018-07-23 09:39:15", "2018-07-23 09:39:15", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Carrickalinga Beach House</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p><strong>Our involvement: Design, Interior Design, Town Planning, Landscape Design</strong></p>\n<p>Builder: <a href=\"https://www.endurobuilders.com.au/about-us/\" target=\"_blank\" rel=\"noopener noreferrer\">Enduro Builders</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\" posts_number=\"48\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Carrickalinga Beach House", "", "inherit", "closed", "closed", "", "1119-revision-v1", "", "", "2018-07-23 09:39:15", "2018-07-23 09:39:15", "", "1119", "https://beyondink.alluredigitalmarketing.com.au/1119-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1119", "1", "2018-07-23 09:21:03", "2018-07-23 09:21:03", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Carrickalinga Beach House</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p><strong>Our involvement: Design, Interior Design, Town Planning, Landscape Design</strong></p>\n<p>Builder: <a href=\"https://www.endurobuilders.com.au/about-us/\" target=\"_blank\" rel=\"noopener noreferrer\">Enduro Builders</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1125,1130,1143,1149,1151,1152,1153,1154,1157,1160,1161,1166\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,\" posts_number=\"8\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Carrickalinga Beach House", "", "publish", "closed", "closed", "", "carrickalinga-beach-house", "", "", "2018-07-24 11:47:35", "2018-07-24 11:47:35", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=1119", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("1120", "1", "2018-07-23 09:18:48", "2018-07-23 09:18:48", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#9dd00f\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"27px|0px|11px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Crafers Residence</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\" prev_background_color=\"#9dd00f\" next_background_color=\"#000000\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235,250,246\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\" prev_background_color=\"#000000\"][et_pb_fullwidth_image _builder_version=\"3.0.106\" /][/et_pb_section]", "", "", "inherit", "closed", "closed", "", "1119-revision-v1", "", "", "2018-07-23 09:18:48", "2018-07-23 09:18:48", "", "1119", "https://beyondink.alluredigitalmarketing.com.au/1119-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1121", "1", "2018-07-23 09:21:03", "2018-07-23 09:21:03", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#9dd00f\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"27px|0px|11px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Crafers Residence</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\" prev_background_color=\"#9dd00f\" next_background_color=\"#000000\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235,250,246\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\" prev_background_color=\"#000000\"][et_pb_fullwidth_image _builder_version=\"3.0.106\" /][/et_pb_section]", "Carrickalinga Beach House", "", "inherit", "closed", "closed", "", "1119-revision-v1", "", "", "2018-07-23 09:21:03", "2018-07-23 09:21:03", "", "1119", "https://beyondink.alluredigitalmarketing.com.au/1119-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1172", "1", "2018-07-23 09:34:35", "2018-07-23 09:34:35", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Carrickalinga Beach House</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"246,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\" posts_number=\"48\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Carrickalinga Beach House", "", "inherit", "closed", "closed", "", "1119-revision-v1", "", "", "2018-07-23 09:34:35", "2018-07-23 09:34:35", "", "1119", "https://beyondink.alluredigitalmarketing.com.au/1119-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1123", "1", "2018-07-23 09:24:47", "2018-07-23 09:24:47", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_1-copy-800x533", "", "", "2018-07-23 09:32:13", "2018-07-23 09:32:13", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_1-Copy-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1124", "1", "2018-07-23 09:24:52", "2018-07-23 09:24:52", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_2-800x533", "", "", "2018-07-23 09:32:10", "2018-07-23 09:32:10", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_2-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1125", "1", "2018-07-23 09:25:07", "2018-07-23 09:25:07", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_3-800x533-2", "", "", "2018-07-23 09:32:07", "2018-07-23 09:32:07", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_3-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1126", "1", "2018-07-23 09:25:17", "2018-07-23 09:25:17", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_4-800x533", "", "", "2018-07-23 09:32:04", "2018-07-23 09:32:04", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_4-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1127", "1", "2018-07-23 09:25:27", "2018-07-23 09:25:27", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_5-800x533", "", "", "2018-07-23 09:32:00", "2018-07-23 09:32:00", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_5-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1128", "1", "2018-07-23 09:25:33", "2018-07-23 09:25:33", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_6-800x533", "", "", "2018-07-23 09:31:57", "2018-07-23 09:31:57", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_6-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1129", "1", "2018-07-23 09:25:41", "2018-07-23 09:25:41", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_7-800x533", "", "", "2018-07-23 09:31:53", "2018-07-23 09:31:53", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_7-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1130", "1", "2018-07-23 09:25:45", "2018-07-23 09:25:45", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_9-800x533", "", "", "2018-07-23 09:31:50", "2018-07-23 09:31:50", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_9-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1131", "1", "2018-07-23 09:25:52", "2018-07-23 09:25:52", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_10-800x533", "", "", "2018-07-23 09:31:47", "2018-07-23 09:31:47", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_10-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1132", "1", "2018-07-23 09:25:57", "2018-07-23 09:25:57", "", "Carrickalinga Beach House", "", "inherit", "open", "closed", "", "5-bennett-street-carrickalinga_highres_4k_11-800x533", "", "", "2018-07-23 09:31:43", "2018-07-23 09:31:43", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_11-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1090", "1", "2018-07-19 09:00:35", "2018-07-19 09:00:35", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.93\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#000000\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/living_01.jpg\" custom_padding=\"10%|0px|20%|0px\" next_background_color=\"#000000\"][et_pb_row admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>The Blog</h1>\r\nMauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"100px|0px|100px|0px\" prev_background_color=\"#000000\" next_background_color=\"#000000\"][et_pb_row admin_label=\"Blog Posts Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_blog fullwidth=\"off\" posts_number=\"15\" offset_number=\"0\" _builder_version=\"3.0.93\" header_level=\"h4\" header_font=\"Muli|600|||||||\" header_font_size=\"18px\" header_line_height=\"1.4em\" body_font=\"Muli||||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" meta_font=\"Muli|600|||||||\" meta_font_size=\"14px\" meta_text_color=\"rgba(0,0,0,0.3)\" pagination_font=\"Muli|700|||||||\" pagination_text_color=\"#f4583f\" pagination_line_height=\"1.7em\" border_width_all=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.93\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/section-bg-2.jpg\" background_position=\"bottom_center\" custom_padding=\"8%|0px|8%|0px\" prev_background_color=\"#000000\"][et_pb_row admin_label=\"Subscription Row\" custom_padding=\"|||\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Weekly Newsletter.\" use_background_color=\"off\" background_layout=\"light\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#1a1a1a\" button_border_color_hover=\"#1a1a1a\" button_border_radius_hover=\"0px\" use_focus_border_color=\"off\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. [/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]\r\n\r\nWe won\'t spam!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Test Page", "", "private", "closed", "closed", "", "test", "", "", "2018-07-19 09:00:35", "2018-07-19 09:00:35", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=1090", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("1091", "1", "2018-07-19 09:00:09", "2018-07-19 09:00:09", "", "section-bg-2", "", "inherit", "open", "closed", "", "section-bg-2", "", "", "2018-07-19 09:00:09", "2018-07-19 09:00:09", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/section-bg-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1092", "1", "2018-07-19 09:00:35", "2018-07-19 09:00:35", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.93\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#000000\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/living_01.jpg\" custom_padding=\"10%|0px|20%|0px\" next_background_color=\"#000000\"][et_pb_row admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>The Blog</h1>\r\nMauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"100px|0px|100px|0px\" prev_background_color=\"#000000\" next_background_color=\"#000000\"][et_pb_row admin_label=\"Blog Posts Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_blog fullwidth=\"off\" posts_number=\"15\" offset_number=\"0\" _builder_version=\"3.0.93\" header_level=\"h4\" header_font=\"Muli|600|||||||\" header_font_size=\"18px\" header_line_height=\"1.4em\" body_font=\"Muli||||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" meta_font=\"Muli|600|||||||\" meta_font_size=\"14px\" meta_text_color=\"rgba(0,0,0,0.3)\" pagination_font=\"Muli|700|||||||\" pagination_text_color=\"#f4583f\" pagination_line_height=\"1.7em\" border_width_all=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.93\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/section-bg-2.jpg\" background_position=\"bottom_center\" custom_padding=\"8%|0px|8%|0px\" prev_background_color=\"#000000\"][et_pb_row admin_label=\"Subscription Row\" custom_padding=\"|||\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Weekly Newsletter.\" use_background_color=\"off\" background_layout=\"light\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#1a1a1a\" button_border_color_hover=\"#1a1a1a\" button_border_radius_hover=\"0px\" use_focus_border_color=\"off\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. [/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]\r\n\r\nWe won\'t spam!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Test Page", "", "inherit", "closed", "closed", "", "1090-revision-v1", "", "", "2018-07-19 09:00:35", "2018-07-19 09:00:35", "", "1090", "https://beyondink.alluredigitalmarketing.com.au/1090-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1093", "1", "2018-07-19 09:00:36", "2018-07-19 09:00:36", "<p>[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.93\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#000000\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_overlays_image=\"on\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/living_01.jpg\" custom_padding=\"10%|0px|20%|0px\" next_background_color=\"#000000\"][et_pb_row admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]</p><h1>The Blog</h1><p>Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate.</p><p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"100px|0px|100px|0px\" prev_background_color=\"#000000\" next_background_color=\"#000000\"][et_pb_row admin_label=\"Blog Posts Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_blog fullwidth=\"off\" posts_number=\"15\" offset_number=\"0\" _builder_version=\"3.0.93\" header_level=\"h4\" header_font=\"Muli|600|||||||\" header_font_size=\"18px\" header_line_height=\"1.4em\" body_font=\"Muli||||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" meta_font=\"Muli|600|||||||\" meta_font_size=\"14px\" meta_text_color=\"rgba(0,0,0,0.3)\" pagination_font=\"Muli|700|||||||\" pagination_text_color=\"#f4583f\" pagination_line_height=\"1.7em\" border_width_all=\"0px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.93\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/section-bg-2.jpg\" background_position=\"bottom_center\" custom_padding=\"8%|0px|8%|0px\" prev_background_color=\"#000000\"][et_pb_row admin_label=\"Subscription Row\" custom_padding=\"|||\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Weekly Newsletter.\" use_background_color=\"off\" background_layout=\"light\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.93\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#f4583f\" button_border_width=\"10px\" button_border_color=\"#f4583f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_use_icon=\"off\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#1a1a1a\" button_border_color_hover=\"#1a1a1a\" button_border_radius_hover=\"0px\" use_focus_border_color=\"off\"] Mauris non tempor quam, et lacinia sapien. Mauris accumsan eros eget libero posuere vulputate. [/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.93\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]</p><p>We won\'t spam!</p><p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]</p>", "Test Page", "", "inherit", "closed", "closed", "", "1090-autosave-v1", "", "", "2018-07-19 09:00:36", "2018-07-19 09:00:36", "", "1090", "https://beyondink.alluredigitalmarketing.com.au/1090-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1450", "1", "2018-07-26 09:55:35", "2018-07-26 09:55:35", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Mt Barker Commercial Premises</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|54px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"27px|0px|27px|0px\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>New commercial premises in Mount Barker. Estimated commencement November 2018.</p>\n<p><strong> Our Involvement: Design, Project Management, Cost Control, Town Planning</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1215,1213\" gallery_orderby=\"rand\" gallery_captions=\",\" posts_number=\"2\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" module_class=\"centerGallery\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Mt Barker Commercial Premises", "", "publish", "closed", "closed", "", "mt-barker-commercial-premises", "", "", "2018-07-27 02:08:43", "2018-07-27 02:08:43", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=1450", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("1095", "1", "2018-07-19 09:06:17", "2018-07-19 09:06:17", "[et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_blog show_more=\"on\" show_author=\"off\" show_categories=\"off\" _builder_version=\"3.0.106\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section]", "Test Page", "", "inherit", "closed", "closed", "", "763-revision-v1", "", "", "2018-07-19 09:06:17", "2018-07-19 09:06:17", "", "763", "https://beyondink.alluredigitalmarketing.com.au/763-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1099", "1", "2018-07-19 09:11:15", "2018-07-19 09:11:15", "[et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"2_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_blog posts_number=\"10\" show_more=\"on\" show_author=\"off\" show_categories=\"off\" offset_number=\"0\" _builder_version=\"3.0.106\"][/et_pb_blog][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_sidebar area=\"sidebar-1\" _builder_version=\"3.0.106\"][/et_pb_sidebar][/et_pb_column][/et_pb_row][/et_pb_section]", "Test Page", "", "inherit", "closed", "closed", "", "763-revision-v1", "", "", "2018-07-19 09:11:15", "2018-07-19 09:11:15", "", "763", "https://beyondink.alluredigitalmarketing.com.au/763-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1100", "1", "2018-07-19 09:17:15", "2018-07-19 09:17:15", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Beyond Ink Blog</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"2_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_blog posts_number=\"10\" show_more=\"on\" show_author=\"off\" show_categories=\"off\" offset_number=\"0\" _builder_version=\"3.0.106\"][/et_pb_blog][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_sidebar area=\"sidebar-1\" _builder_version=\"3.0.106\"][/et_pb_sidebar][/et_pb_column][/et_pb_row][/et_pb_section]", "Test Page", "", "inherit", "closed", "closed", "", "763-revision-v1", "", "", "2018-07-19 09:17:15", "2018-07-19 09:17:15", "", "763", "https://beyondink.alluredigitalmarketing.com.au/763-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1101", "1", "2018-07-19 09:17:22", "2018-07-19 09:17:22", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Beyond Ink Blog</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"2_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_blog posts_number=\"10\" show_more=\"on\" show_author=\"off\" show_categories=\"off\" offset_number=\"0\" _builder_version=\"3.0.106\"][/et_pb_blog][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_sidebar area=\"sidebar-1\" _builder_version=\"3.0.106\"][/et_pb_sidebar][/et_pb_column][/et_pb_row][/et_pb_section]", "", "", "inherit", "closed", "closed", "", "763-autosave-v1", "", "", "2018-07-19 09:17:22", "2018-07-19 09:17:22", "", "763", "https://beyondink.alluredigitalmarketing.com.au/763-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1102", "1", "2018-07-19 09:17:56", "2018-07-19 09:17:56", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Beyond Ink Blog</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"2_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_blog posts_number=\"10\" show_more=\"on\" show_author=\"off\" show_categories=\"off\" offset_number=\"0\" _builder_version=\"3.0.106\"][/et_pb_blog][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_sidebar area=\"sidebar-1\" _builder_version=\"3.0.106\"][/et_pb_sidebar][/et_pb_column][/et_pb_row][/et_pb_section]", "Blog Page", "", "publish", "closed", "closed", "", "blog-page", "", "", "2018-07-19 09:17:56", "2018-07-19 09:17:56", "", "0", "https://beyondink.alluredigitalmarketing.com.au/et_pb_layout/blog-page/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("1103", "1", "2018-07-19 09:18:47", "2018-07-19 09:18:47", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#9dd00f\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"27px|0px|11px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Beyond Ink Blog</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.106\" prev_background_color=\"#9dd00f\"][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"2_3\"][et_pb_blog posts_number=\"10\" show_more=\"on\" show_author=\"off\" show_categories=\"off\" offset_number=\"0\" _builder_version=\"3.0.106\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_sidebar area=\"sidebar-1\" _builder_version=\"3.0.106\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Blog", "", "publish", "closed", "closed", "", "blog", "", "", "2018-07-19 09:18:47", "2018-07-19 09:18:47", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=1103", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("1104", "1", "2018-07-19 09:18:47", "2018-07-19 09:18:47", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#9dd00f\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"27px|0px|11px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Beyond Ink Blog</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.106\" prev_background_color=\"#9dd00f\"][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"2_3\"][et_pb_blog posts_number=\"10\" show_more=\"on\" show_author=\"off\" show_categories=\"off\" offset_number=\"0\" _builder_version=\"3.0.106\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_sidebar area=\"sidebar-1\" _builder_version=\"3.0.106\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Blog", "", "inherit", "closed", "closed", "", "1103-revision-v1", "", "", "2018-07-19 09:18:47", "2018-07-19 09:18:47", "", "1103", "https://beyondink.alluredigitalmarketing.com.au/1103-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1105", "1", "2018-07-19 09:24:47", "2018-07-19 09:24:47", "[et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]Did you catch our CEO John Ashcroft in April’s edition of The Barker? John was interviewed as one of ‘The Faces of the Future’, to talk about his passion and vision for the fast-growing region of Mount Barker.\r\n\r\nLooking ahead at ‘Vision 2050’, it’s clear the city’s future is looking bright. In fact, over the next 25 years the population will more than double, as council’s plan for it to become “the most liveable place in South Australia” unfolds.\r\n\r\nAt Beyond Ink, we’re proud to play our part in developing the growing region – we currently have more than 80 projects in development in the Hills; including designing the new Wolf Blass Museum and Gallery in Hahndorf\'s main street, and the new <a href=\"barker-plaza/\">Aldi store in Mount Barker</a>. As John is quoted in the article, “Mount Barker is tremendous” - there are many lifestyle options available in the area now; and “the population moving there\" has encouraged that demand.\r\n\r\nAs Mount Barker evolves, ensuring sustainable growth will be key; as will the preservation of the region’s individuality and authenticity.\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Beyond Ink in the \'The Barker\'", "", "publish", "closed", "closed", "", "beyond-ink-in-the-the-barker", "", "", "2018-07-19 09:35:22", "2018-07-19 09:35:22", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?p=1105", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("1106", "1", "2018-07-19 09:22:50", "2018-07-19 09:22:50", "[et_pb_section bb_built=\"1\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text]\r\n\r\nWork\'s almost complete on the new Wolf Blass Museum and Gallery in Hahndorf’s main street. The iconic new attraction encompasses a historic former bank building, and an extensively restored 175-plus-year-old school house.\r\n\r\nThe museum will house some of Blass’s original furniture, wine-making artefacts, memorabilia and more. There’s a cooperage with long bar for wine tasting; a barrel room for meetings and events; and plans for outdoor entertaining spaces in the future.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Beyond Ink in the \'The Barker\'", "", "inherit", "closed", "closed", "", "1105-revision-v1", "", "", "2018-07-19 09:22:50", "2018-07-19 09:22:50", "", "1105", "https://beyondink.alluredigitalmarketing.com.au/1105-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1107", "1", "2018-07-19 09:24:30", "2018-07-19 09:24:30", "[et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<p>Did you catch our CEO John Ashcroft in April’s edition of The Barker? John was interviewed as one of ‘The Faces of the Future’, to talk about his passion and vision for the fast-growing region of Mount Barker.</p>\n<p>Looking ahead at ‘Vision 2050’, it’s clear the city’s future is looking bright. In fact, over the next 25 years the population will more than double, as council’s plan for it to become “the most liveable place in South Australia” unfolds.</p>\n<p>At Beyond Ink, we’re proud to play our part in developing the growing region – we currently have more than 80 projects in development in the Hills; including designing the new Wolf Blass Museum and Gallery in Hahndorf\'s main street, and the new <a href=\"barker-plaza/\">Aldi store in Mount Barker</a>. As John is quoted in the article, “Mount Barker is tremendous” - there are many lifestyle options available in the area now; and “the population moving there\" has encouraged that demand.</p>\n<p>As Mount Barker evolves, ensuring sustainable growth will be key; as will the preservation of the region’s individuality and authenticity.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Beyond Ink in the \'The Barker\'", "", "inherit", "closed", "closed", "", "1105-revision-v1", "", "", "2018-07-19 09:24:30", "2018-07-19 09:24:30", "", "1105", "https://beyondink.alluredigitalmarketing.com.au/1105-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1108", "1", "2018-07-19 09:24:47", "2018-07-19 09:24:47", "[et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\nDid you catch our CEO John Ashcroft in April’s edition of The Barker? John was interviewed as one of ‘The Faces of the Future’, to talk about his passion and vision for the fast-growing region of Mount Barker.\r\n\r\nLooking ahead at ‘Vision 2050’, it’s clear the city’s future is looking bright. In fact, over the next 25 years the population will more than double, as council’s plan for it to become “the most liveable place in South Australia” unfolds.\r\n\r\nAt Beyond Ink, we’re proud to play our part in developing the growing region – we currently have more than 80 projects in development in the Hills; including designing the new Wolf Blass Museum and Gallery in Hahndorf\'s main street, and the new <a href=\"barker-plaza/\">Aldi store in Mount Barker</a>. As John is quoted in the article, “Mount Barker is tremendous” - there are many lifestyle options available in the area now; and “the population moving there\" has encouraged that demand.\r\n\r\nAs Mount Barker evolves, ensuring sustainable growth will be key; as will the preservation of the region’s individuality and authenticity.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Beyond Ink in the \'The Barker\'", "", "inherit", "closed", "closed", "", "1105-revision-v1", "", "", "2018-07-19 09:24:47", "2018-07-19 09:24:47", "", "1105", "https://beyondink.alluredigitalmarketing.com.au/1105-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1109", "1", "2018-07-19 09:25:16", "2018-07-19 09:25:16", "", "Beyond Ink in \'The Barker\'", "", "inherit", "open", "closed", "", "the-barker-1-1", "", "", "2018-07-19 09:25:54", "2018-07-19 09:25:54", "", "1105", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/The-Barker-1-1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("1111", "1", "2018-07-19 09:29:45", "2018-07-19 09:29:45", "", "Beyond Ink in \'The Barker\'", "", "inherit", "open", "closed", "", "the-barker", "", "", "2018-07-19 09:29:50", "2018-07-19 09:29:50", "", "1105", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/The-Barker.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1113", "1", "2018-07-19 09:31:43", "2018-07-19 09:31:43", "[et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]Did you catch our CEO John Ashcroft in April’s edition of The Barker? John was interviewed as one of ‘The Faces of the Future’, to talk about his passion and vision for the fast-growing region of Mount Barker.\r\n\r\nLooking ahead at ‘Vision 2050’, it’s clear the city’s future is looking bright. In fact, over the next 25 years the population will more than double, as council’s plan for it to become “the most liveable place in South Australia” unfolds.\r\n\r\nAt Beyond Ink, we’re proud to play our part in developing the growing region – we currently have more than 80 projects in development in the Hills; including designing the new Wolf Blass Museum and Gallery in Hahndorf\'s main street, and the new <a href=\"barker-plaza/\">Aldi store in Mount Barker</a>. As John is quoted in the article, “Mount Barker is tremendous” - there are many lifestyle options available in the area now; and “the population moving there\" has encouraged that demand.\r\n\r\nAs Mount Barker evolves, ensuring sustainable growth will be key; as will the preservation of the region’s individuality and authenticity.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Beyond Ink in the \'The Barker\'", "", "inherit", "closed", "closed", "", "1105-revision-v1", "", "", "2018-07-19 09:31:43", "2018-07-19 09:31:43", "", "1105", "https://beyondink.alluredigitalmarketing.com.au/1105-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1114", "1", "2018-07-19 09:32:07", "2018-07-19 09:32:07", " ", "", "", "publish", "closed", "closed", "", "1114", "", "", "2018-07-30 02:30:40", "2018-07-30 02:30:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?p=1114", "35", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("1115", "1", "2018-07-19 09:32:57", "0000-00-00 00:00:00", "<p>[et_pb_section bb_built=\"1\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text]</p><p>hgfxjvjh</p><p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]</p>", "hvhv", "", "draft", "open", "closed", "", "", "", "", "2018-07-19 09:32:57", "2018-07-19 09:32:57", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?post_type=project&#038;p=1115", "0", "project", "", "0");
INSERT INTO `wp_posts` VALUES("1116", "1", "2018-07-19 09:32:56", "2018-07-19 09:32:56", "[et_pb_section bb_built=\"1\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text]\r\n\r\nhgfxjvjh\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "hvhv", "", "inherit", "closed", "closed", "", "1115-revision-v1", "", "", "2018-07-19 09:32:56", "2018-07-19 09:32:56", "", "1115", "https://beyondink.alluredigitalmarketing.com.au/1115-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1117", "1", "2018-07-19 09:34:58", "2018-07-19 09:34:58", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#9dd00f\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"27px|0px|11px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\n<h1>Beyond Ink Blog</h1>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.106\" prev_background_color=\"#9dd00f\"][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"2_3\"][et_pb_blog posts_number=\"10\" show_more=\"on\" show_author=\"off\" show_categories=\"off\" offset_number=\"0\" _builder_version=\"3.0.106\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_sidebar area=\"sidebar-1\" _builder_version=\"3.0.106\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Blog", "", "inherit", "closed", "closed", "", "1103-autosave-v1", "", "", "2018-07-19 09:34:58", "2018-07-19 09:34:58", "", "1103", "https://beyondink.alluredigitalmarketing.com.au/1103-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1197", "1", "2018-07-23 09:50:44", "2018-07-23 09:50:44", " ", "", "", "publish", "closed", "closed", "", "1197", "", "", "2018-07-30 02:30:40", "2018-07-30 02:30:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?p=1197", "17", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("1198", "1", "2018-07-23 09:57:49", "2018-07-23 09:57:49", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Wolf Blass Gallery and Museum</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>Donated by Wolf and Shirley Blass to the Wolf Blass Foundation, this property has become the new Wolf Blass Gallery and Museum - a celebration of the history of winemaking and Wolf Blass\'s life.</p>\n<p><strong>Our Involvement: Design, Project Management, Cost Control, Town Planning, Interior Design</strong></p>\n<p>Builder: Scholz Constructions</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1206,1207,1208,1209,1210\" gallery_orderby=\"rand\" gallery_captions=\",,,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>Expected to open in September 2018, the Wolf Blass Gallery and Museum building was formerly a bank - with a ruin at the back of the property. This ruin was, in fact, an old <g class=\"gr_ gr_10 gr-alert gr_spell gr_inline_cards gr_run_anim ContextualSpelling ins-del\" id=\"10\" data-gr-id=\"10\">school house</g> from a book written by Anni Luur Fox.</p>\n<p>The schoolhouse was in bad shape (as it\'s 175+ years old), but it has now been extensively restored, and the new Museum and Gallery building built around it.</p>\n<p>The existing schoolhouse is now a feature inside the gallery and <g class=\"gr_ gr_14 gr-alert gr_gramm gr_inline_cards gr_run_anim Punctuation only-del replaceWithoutSep gr-progress\" id=\"14\" data-gr-id=\"14\">museum,</g> and acts as a cooperage display.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Wolf Blass Gallery and Museum", "", "publish", "closed", "closed", "", "wolf-blass-gallery-and-museum", "", "", "2018-07-24 12:43:36", "2018-07-24 12:43:36", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=1198", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("1179", "1", "2018-07-23 09:47:07", "2018-07-23 09:47:07", "", "Hahndorf Residence", "", "inherit", "open", "closed", "", "yoyakiexif", "", "", "2018-07-23 09:48:08", "2018-07-23 09:48:08", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/WEB_70_Hogan_Dusk__27_of_35_-800x534.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1180", "1", "2018-07-23 09:47:14", "2018-07-23 09:47:14", "", "Hahndorf Residence", "", "inherit", "open", "closed", "", "yoyakdexif", "", "", "2018-07-23 09:48:03", "2018-07-23 09:48:03", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/WEB_70_Hogan_Dusk__26_of_35_-800x534.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1181", "1", "2018-07-23 09:47:20", "2018-07-23 09:47:20", "", "Hahndorf Residence", "", "inherit", "open", "closed", "", "yoyariexif", "", "", "2018-07-23 09:47:57", "2018-07-23 09:47:57", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/WEB_70_Hogan_Dusk__31_of_35_-800x534.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1182", "1", "2018-07-23 09:47:33", "2018-07-23 09:47:33", "", "Hahndorf Residence", "", "inherit", "open", "closed", "", "yoyapaexif", "", "", "2018-07-23 09:47:54", "2018-07-23 09:47:54", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/WEB_70_Hogan_Dusk__23_of_35_-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1183", "1", "2018-07-23 09:47:41", "2018-07-23 09:47:41", "", "Hahndorf Residence", "", "inherit", "open", "closed", "", "yoyafexif", "", "", "2018-07-23 09:49:26", "2018-07-23 09:49:26", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/WEB_70_Hogan_Dusk__29_of_35_-800x534.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1184", "1", "2018-07-23 09:47:48", "2018-07-23 09:47:48", "", "Hahndorf Residence", "", "inherit", "open", "closed", "", "yoyak-exif", "", "", "2018-07-23 09:49:23", "2018-07-23 09:49:23", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/WEB_70_Hogan_Dusk__24_of_35_-800x534.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1185", "1", "2018-07-23 09:47:53", "2018-07-23 09:47:53", "", "Hahndorf Residence", "", "inherit", "open", "closed", "", "yoyaexif", "", "", "2018-07-23 09:49:21", "2018-07-23 09:49:21", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/WEB_PRINT_70_Hogan_Day__52_of_62_-800x534.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1186", "1", "2018-07-23 09:47:59", "2018-07-23 09:47:59", "", "Hahndorf Residence", "", "inherit", "open", "closed", "", "yoyalsexif", "", "", "2018-07-23 09:49:17", "2018-07-23 09:49:17", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/WEB_70_Hogan_Dusk__16_of_35_-800x534.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1187", "1", "2018-07-23 09:48:04", "2018-07-23 09:48:04", "", "Hahndorf Residence", "", "inherit", "open", "closed", "", "yoyacexif", "", "", "2018-07-23 09:49:14", "2018-07-23 09:49:14", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/WEB_70_Hogan_Dusk__14_of_35_-800x534.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1188", "1", "2018-07-23 09:48:09", "2018-07-23 09:48:09", "", "Hahndorf Residence", "", "inherit", "open", "closed", "", "yoyad5exif", "", "", "2018-07-23 09:49:11", "2018-07-23 09:49:11", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/WEB_70_Hogan_Dusk__19_of_35_-800x534.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1189", "1", "2018-07-23 09:48:14", "2018-07-23 09:48:14", "", "Hahndorf Residence", "", "inherit", "open", "closed", "", "yoyajexif", "", "", "2018-07-23 09:49:06", "2018-07-23 09:49:06", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/WEB_70_Hogan_Dusk__2_of_35_-800x534.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1190", "1", "2018-07-23 09:48:17", "2018-07-23 09:48:17", "", "Hahndorf Residence", "", "inherit", "open", "closed", "", "yoya%c2%9dexif", "", "", "2018-07-23 09:49:03", "2018-07-23 09:49:03", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/WEB_70_Hogan_Dusk__8_of_35_-800x534.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1191", "1", "2018-07-23 09:48:20", "2018-07-23 09:48:20", "", "Hahndorf Residence", "", "inherit", "open", "closed", "", "yoya9uexif", "", "", "2018-07-23 09:48:59", "2018-07-23 09:48:59", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/WEB_70_Hogan_Dusk__1_of_35_-800x534.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1192", "1", "2018-07-23 09:48:25", "2018-07-23 09:48:25", "", "Hahndorf Residence", "", "inherit", "open", "closed", "", "yoyaiexif", "", "", "2018-07-23 09:48:56", "2018-07-23 09:48:56", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/WEB_70_Hogan_Dusk__4_of_35_-800x534.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1193", "1", "2018-07-23 09:48:30", "2018-07-23 09:48:30", "", "Hahndorf Residence", "", "inherit", "open", "closed", "", "yoya", "", "", "2018-07-23 09:48:50", "2018-07-23 09:48:50", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/WEB_70_Hogan_Dusk__9_of_35_-800x534.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1194", "1", "2018-07-23 09:48:37", "2018-07-23 09:48:37", "", "Hahndorf Residence", "", "inherit", "open", "closed", "", "yoya7nexif", "", "", "2018-07-23 09:48:46", "2018-07-23 09:48:46", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/WEB_70_Hogan_Dusk__10_of_35_-800x534.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1196", "1", "2018-07-23 09:50:44", "2018-07-23 09:50:44", " ", "", "", "publish", "closed", "closed", "", "1196", "", "", "2018-07-30 02:30:40", "2018-07-30 02:30:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?p=1196", "20", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("1195", "1", "2018-07-23 09:50:09", "2018-07-23 09:50:09", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Hahndorf Residence</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p><strong>Our Involvement: Design, Town Planning</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Hahndorf Residence", "", "inherit", "closed", "closed", "", "1176-revision-v1", "", "", "2018-07-23 09:50:09", "2018-07-23 09:50:09", "", "1176", "https://beyondink.alluredigitalmarketing.com.au/1176-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1199", "1", "2018-07-23 09:57:49", "2018-07-23 09:57:49", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#9dd00f\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"27px|0px|11px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Crafers Residence</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\" prev_background_color=\"#9dd00f\" next_background_color=\"#000000\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235,250,246\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\" prev_background_color=\"#000000\"][et_pb_fullwidth_image _builder_version=\"3.0.106\" /][/et_pb_section]", "Wolf Blass Gallery and Museum", "", "inherit", "closed", "closed", "", "1198-revision-v1", "", "", "2018-07-23 09:57:49", "2018-07-23 09:57:49", "", "1198", "https://beyondink.alluredigitalmarketing.com.au/1198-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1200", "1", "2018-07-23 10:02:31", "2018-07-23 10:02:31", " ", "", "", "publish", "closed", "closed", "", "1200", "", "", "2018-07-30 02:30:40", "2018-07-30 02:30:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?p=1200", "34", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("1209", "1", "2018-07-23 10:17:17", "2018-07-23 10:17:17", "", "Wolf Blass Gallery and Museum", "", "inherit", "open", "closed", "", "external-rev-a-800x379", "", "", "2018-07-23 10:18:08", "2018-07-23 10:18:08", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/External-REV-A-800x379.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1210", "1", "2018-07-23 10:17:20", "2018-07-23 10:17:20", "", "Wolf Blass Gallery and Museum", "", "inherit", "open", "closed", "", "internal-rev-a-800x443", "", "", "2018-07-23 10:18:02", "2018-07-23 10:18:02", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Internal-REV-A-800x443.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1211", "1", "2018-07-23 10:17:46", "2018-07-23 10:17:46", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Wolf Blass Gallery and Museum</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>This property in Hahndorf was donated by Wolf and Shirley Blass to the Wolf Blass Foundation, and it has been turned in to the Wolf Blass Gallery and Museum - celebrating the history of winemaking and Wolf Blass\'s life.</p>\n<p>Expected to be open in September 2018, the building was formerly a bank - with a ruin at the back of the property. This ruin was, in fact, an old school house from a book written by Anni Luur Fox. The schoolhouse was in bad shape (175+ years old), but it has now been extensively restored, and the new building built around it. The existing schoolhouse is now a feature inside the gallery and museum, and acts as a cooperage display.</p>\n<p>Builder: Scholz Constructions</p>\n<p><strong>Our Involvement: Design, Project Management, Cost Control, Town Planning, Interior Design</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1206,1207,1208,1209,1210\" gallery_orderby=\"rand\" gallery_captions=\",,,,\" posts_number=\"5\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Wolf Blass Gallery and Museum", "", "inherit", "closed", "closed", "", "1198-revision-v1", "", "", "2018-07-23 10:17:46", "2018-07-23 10:17:46", "", "1198", "https://beyondink.alluredigitalmarketing.com.au/1198-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1202", "1", "2018-07-23 10:04:58", "2018-07-23 10:04:58", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Wolf Blass Gallery and Museum</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235,250,246\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Wolf Blass Gallery and Museum", "", "inherit", "closed", "closed", "", "1198-revision-v1", "", "", "2018-07-23 10:04:58", "2018-07-23 10:04:58", "", "1198", "https://beyondink.alluredigitalmarketing.com.au/1198-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1204", "1", "2018-07-23 10:09:53", "2018-07-23 10:09:53", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Wolf Blass Gallery and Museum</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>This property in Hahndorf was donated by Wolf and Shirley Blass to the Wolf Blass Foundation, and it has been turned in to the Wolf Blass Gallery and Museum - celebrating the history of winemaking and Wolf Blass\'s life.</p>\n<p>Expected to be open in September 2018, the building was formerly a bank - with a ruin at the back of the property. This ruin was, in fact, an old school house from a book written by Anni Luur Fox. The schoolhouse was in bad shape (175+ years old), but it has now been extensively restored, and the new building built around it. The existing schoolhouse is now a feature inside the gallery and museum, and acts as a cooperage display.</p>\n<p>Builder: Scholz Constructions</p>\n<p><strong>Our Involvement: Design, Project Management, Cost Control, Town Planning, Interior Design</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235,250,246\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Wolf Blass Gallery and Museum", "", "inherit", "closed", "closed", "", "1198-revision-v1", "", "", "2018-07-23 10:09:53", "2018-07-23 10:09:53", "", "1198", "https://beyondink.alluredigitalmarketing.com.au/1198-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1206", "1", "2018-07-23 10:16:58", "2018-07-23 10:16:58", "", "Wolf Blass Gallery and Museum", "", "inherit", "open", "closed", "", "177-800x533", "", "", "2018-07-23 10:18:22", "2018-07-23 10:18:22", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/177-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1207", "1", "2018-07-23 10:17:09", "2018-07-23 10:17:09", "", "Wolf Blass Gallery and Museum", "", "inherit", "open", "closed", "", "184-800x533", "", "", "2018-07-23 10:18:18", "2018-07-23 10:18:18", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/184-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1208", "1", "2018-07-23 10:17:13", "2018-07-23 10:17:13", "", "Wolf Blass Gallery and Museum", "", "inherit", "open", "closed", "", "external-road-rev-a-800x533", "", "", "2018-07-23 10:18:12", "2018-07-23 10:18:12", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/External-Road-REV-A-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1213", "1", "2018-07-23 10:22:40", "2018-07-23 10:22:40", "", "Duttons Service Centre - Before", "", "inherit", "open", "closed", "", "001-800x533", "", "", "2018-07-23 10:23:23", "2018-07-23 10:23:23", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/001-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1214", "1", "2018-07-23 10:24:03", "2018-07-23 10:24:03", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Duttons Service Centre</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|54px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"27px|0px|27px|0px\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading &amp; Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n\r\nA new vehicle service centre currently under construction for Dutton Motors, who specialise in Volkswagen, Subaru and Holden. Duttons already have sales premises in Totness and Murray Bridge, and this new site is expected to be completed in late 2018.\r\n\r\n<strong> Our Involvement: Design, Town Planning, Project Management, Cost Control, Interior Design</strong>\r\n\r\nBuilder: <a href=\"http://www.gehughes.com.au/\" target=\"_blank\" rel=\"noopener noreferrer\">GE Hughes Constructions</a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1215,1213\" gallery_orderby=\"rand\" gallery_captions=\",\" posts_number=\"2\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" module_class=\"centerGallery\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Duttons Service Centre", "", "private", "closed", "closed", "", "duttons-service-centre", "", "", "2018-07-30 02:29:21", "2018-07-30 02:29:21", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=1214", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("1215", "1", "2018-07-23 10:22:46", "2018-07-23 10:22:46", "", "Duttons Service Centre - Render", "", "inherit", "open", "closed", "", "perspective-rev-b-august-800x403", "", "", "2018-07-23 10:23:29", "2018-07-23 10:23:29", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Perspective-REV-B-AUGUST-800x403.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1216", "1", "2018-07-23 10:24:03", "2018-07-23 10:24:03", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#9dd00f\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"27px|0px|11px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Crafers Residence</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\" prev_background_color=\"#9dd00f\" next_background_color=\"#000000\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235,250,246\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\" prev_background_color=\"#000000\"][et_pb_fullwidth_image _builder_version=\"3.0.106\" /][/et_pb_section]", "Duttons Service Centre", "", "inherit", "closed", "closed", "", "1214-revision-v1", "", "", "2018-07-23 10:24:03", "2018-07-23 10:24:03", "", "1214", "https://beyondink.alluredigitalmarketing.com.au/1214-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1223", "1", "2018-07-23 10:32:06", "2018-07-23 10:32:06", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Klose’s Supermarket Woodside</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The existing Klose’s Supermarket in Woodside had become small and outdated, so we were tasked with designing a more appropriate facility. Just down the road - also in Woodside - the new premises will include a supermarket and bottle shop. It has Planning Consent from Council, and we\'re currently working through the remaining approvals. The new Klose\'s Supermarket is expected to open in 2019.</p>\n<p><strong>Our Involvement: Design, Town Planning, Landscape Design, Project Management, Cost Control</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1231,1230,1229,1228\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p><span style=\"font-size: 18px;\">Klose’s Supermarkets are owned and operated by Adelaide Hills family, the Klose\'s, who have been operating supermarkets in the area since 1902.</span></p>\n<p><span style=\"font-size: 18px;\">The Klose family have a strong community focus, and this was recognised when Barry Klose was awarded an Order of Australia Medal in 2015 - for service to the community. The superamarkets have a strong focus <span>on sourcing local products and produce.</span></span></p>\n<p><span style=\"font-size: 18px;\">The Klose\'s have supermarkets in Lobethal, Woodside, Balhannah, Littlehampton (which we designed), and Birdwood; with another opening in Nairne (which we are also designing). This size makes them a </span><span style=\"font-size: 18px;\">major employer in the Adelaide Hills – currently employing 240 staff.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Klose’s Supermarket Woodside", "", "publish", "closed", "closed", "", "kloses-supermarket-woodside", "", "", "2018-07-24 12:42:15", "2018-07-24 12:42:15", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=1223", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("1224", "1", "2018-07-23 10:31:31", "2018-07-23 10:31:31", "[et_pb_section bb_built=\"1\"][et_pb_row][/et_pb_row][/et_pb_section]", "Klose’s Supermarket Woodside", "", "inherit", "closed", "closed", "", "1223-revision-v1", "", "", "2018-07-23 10:31:31", "2018-07-23 10:31:31", "", "1223", "https://beyondink.alluredigitalmarketing.com.au/1223-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1225", "1", "2018-07-23 10:32:06", "2018-07-23 10:32:06", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#9dd00f\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"27px|0px|11px|0px\" _builder_version=\"3.0.92\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Crafers Residence</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\" prev_background_color=\"#9dd00f\" next_background_color=\"#000000\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235,250,246\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\" prev_background_color=\"#000000\"][et_pb_fullwidth_image _builder_version=\"3.0.106\" /][/et_pb_section]", "Klose’s Supermarket Woodside", "", "inherit", "closed", "closed", "", "1223-revision-v1", "", "", "2018-07-23 10:32:06", "2018-07-23 10:32:06", "", "1223", "https://beyondink.alluredigitalmarketing.com.au/1223-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1221", "1", "2018-07-23 10:31:09", "2018-07-23 10:31:09", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Duttons Service Centre</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|54px|0px\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>A new vehicle service centre currently under construction for Dutton Motors, who specialise in Volkswagen, Subaru and Holden. Duttons already have sales premises in Totness and Murray Bridge, and this new site is expected to be completed in late 2018.</p>\n<p>Builder: <a href=\"http://www.gehughes.com.au/\" target=\"_blank\" rel=\"noopener noreferrer\">GE Hughes Constructions</a></p>\n<p> Our Involvement: Design, Town Planning, Project Management, Cost Control, Interior Design</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1215,1213\" gallery_orderby=\"rand\" gallery_captions=\",\" posts_number=\"2\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Duttons Service Centre", "", "inherit", "closed", "closed", "", "1214-revision-v1", "", "", "2018-07-23 10:31:09", "2018-07-23 10:31:09", "", "1214", "https://beyondink.alluredigitalmarketing.com.au/1214-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1219", "1", "2018-07-23 10:28:50", "2018-07-23 10:28:50", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Duttons Service Centre</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|54px|0px\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>A new vehicle service centre currently under construction for Dutton Motors, who specialise in Volkswagen, Subaru and Holden. Duttons already have sales premises in Totness and Murray Bridge, and this new site is expected to be completed in late 2018.</p>\n<p>Builder: <a href=\"http://www.gehughes.com.au/\" target=\"_blank\" rel=\"noopener noreferrer\">GE Hughes Constructions</a></p>\n<p> Our Involvement: Design, Town Planning, Project Management, Cost Control, Interior Design</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1215,1213\" gallery_orderby=\"rand\" gallery_captions=\",\" posts_number=\"2\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Duttons Service Centre", "", "inherit", "closed", "closed", "", "1214-revision-v1", "", "", "2018-07-23 10:28:50", "2018-07-23 10:28:50", "", "1214", "https://beyondink.alluredigitalmarketing.com.au/1214-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1226", "1", "2018-07-23 10:32:39", "2018-07-23 10:32:39", " ", "", "", "publish", "closed", "closed", "", "1226", "", "", "2018-07-30 02:30:40", "2018-07-30 02:30:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?p=1226", "31", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("1228", "1", "2018-07-23 10:34:22", "2018-07-23 10:34:22", "", "Klose’s Supermarket Woodside", "", "inherit", "open", "closed", "", "img_8392-800x533", "", "", "2018-07-23 10:34:33", "2018-07-23 10:34:33", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/IMG_8392-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1229", "1", "2018-07-23 10:34:32", "2018-07-23 10:34:32", "", "Klose’s Supermarket Woodside", "", "inherit", "open", "closed", "", "img_8384-800x533", "", "", "2018-07-23 10:34:40", "2018-07-23 10:34:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/IMG_8384-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1230", "1", "2018-07-23 10:34:39", "2018-07-23 10:34:39", "", "Klose’s Supermarket Woodside", "", "inherit", "open", "closed", "", "cambridge-woodside-supermarket-800x533", "", "", "2018-07-23 10:34:42", "2018-07-23 10:34:42", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/CAMBRIDGE-WOODSIDE-SUPERMARKET-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1231", "1", "2018-07-23 10:34:44", "2018-07-23 10:34:44", "", "Klose’s Supermarket Woodside", "", "inherit", "open", "closed", "", "img_8482-800x533", "", "", "2018-07-23 10:34:49", "2018-07-23 10:34:49", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/IMG_8482-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1232", "1", "2018-07-23 10:39:37", "2018-07-23 10:39:37", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Klose’s Supermarket Woodside</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The current Klose’s Supermarket in Woodside is small and dated, so we have designed a more appropriate facility for the Klose family, just down the road - also in Woodside. The new premises will include a supermarket and bottle shop. The development currently has Planning Consent from Council and we are working through the remaining approvals. Expected to open in 2019.</p>\n<p>Klose’s Supermarkets are owned and operated by Adelaide Hills family, the Klose\'s. They’ve been operating supermarkets in the are since 1902. They have a strong community focus, and Barry Klose was even awarded an Order of Australia Medal in 2015 for service to the community. The Klose\'s have supermarkets in Lobethal, Woodside, Balhannah, Littlehampton (which we designed), and Birdwood; with another opening in Nairne (which we are also designing). The Klose\'s are major employers in the Adelaide Hills – currently employing 240 staff. They have a strong focus on sourcing local products and produce.</p>\n<p><strong>Our Involvement: Design, Town Planning, Landscape Design, Project Management, Cost Control</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1231,1230,1229,1228\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Klose’s Supermarket Woodside", "", "inherit", "closed", "closed", "", "1223-revision-v1", "", "", "2018-07-23 10:39:37", "2018-07-23 10:39:37", "", "1223", "https://beyondink.alluredigitalmarketing.com.au/1223-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1244", "1", "2018-07-23 10:56:42", "2018-07-23 10:56:42", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Coming Soon</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"27px|0px|59px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/murray-bridge-racing-club/\" align=\"center\" _builder_version=\"3.0.106\" max_width=\"60%\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"-50px|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]&nbsp;\r\n\r\n<span style=\"font-size: 18px;\">Racing at Gifford Hill - Murray Bridge Racing Club</span>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"41px|0px|50px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Perspective-REV-B-AUGUST-1024x516.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/duttons-service-centre/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Duttons Service Centre</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/CAMBRIDGE-WOODSIDE-SUPERMARKET-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/aldgate-renovation/https://beyondink.alluredigitalmarketing.com.au/kloses-supermarket-woodside/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Klose\'s Supermarket Woodside</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/External-REV-A-800x379.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/battunga-residence/https://beyondink.alluredigitalmarketing.com.au/wolf-blass-gallery-and-museum/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Wolf Blass Gallery and Museum</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Coming Soon", "", "inherit", "closed", "closed", "", "195-revision-v1", "", "", "2018-07-23 10:56:42", "2018-07-23 10:56:42", "", "195", "https://beyondink.alluredigitalmarketing.com.au/195-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1243", "1", "2018-07-23 10:56:09", "2018-07-23 10:56:09", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Coming Soon</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"27px|0px|59px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/murray-bridge-racing-club/\" align=\"center\" _builder_version=\"3.0.106\" max_width=\"60%\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"-50px|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]&nbsp;\r\n\r\n<span style=\"font-size: 18px;\">Racing at Gifford Hill - Murray Bridge Racing Club</span>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"41px|0px|50px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Perspective-REV-B-AUGUST-800x403.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/duttons-service-centre/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Duttons Service Centre</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/CAMBRIDGE-WOODSIDE-SUPERMARKET-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/aldgate-renovation/https://beyondink.alluredigitalmarketing.com.au/kloses-supermarket-woodside/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Klose\'s Supermarket Woodside</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/External-REV-A-800x379.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/battunga-residence/https://beyondink.alluredigitalmarketing.com.au/wolf-blass-gallery-and-museum/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Wolf Blass Gallery and Museum</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Coming Soon", "", "inherit", "closed", "closed", "", "195-revision-v1", "", "", "2018-07-23 10:56:09", "2018-07-23 10:56:09", "", "195", "https://beyondink.alluredigitalmarketing.com.au/195-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1248", "1", "2018-07-24 05:00:23", "2018-07-24 05:00:23", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Coming Soon</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"27px|0|59px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/murray-bridge-racing-club/\" align=\"center\" _builder_version=\"3.0.106\" max_width=\"60%\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"-50px|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]&nbsp;\r\n\r\n<span style=\"font-size: 18px;\">Racing at Gifford Hill - Murray Bridge Racing Club</span>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"41px|0px|50px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Duttons.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/duttons-service-centre/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Duttons Service Centre</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/CAMBRIDGE-WOODSIDE-SUPERMARKET-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/aldgate-renovation/https://beyondink.alluredigitalmarketing.com.au/kloses-supermarket-woodside/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Klose\'s Supermarket Woodside</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Wolf-Blass.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/battunga-residence/https://beyondink.alluredigitalmarketing.com.au/wolf-blass-gallery-and-museum/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Wolf Blass Gallery and Museum</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Coming Soon", "", "inherit", "closed", "closed", "", "195-revision-v1", "", "", "2018-07-24 05:00:23", "2018-07-24 05:00:23", "", "195", "https://beyondink.alluredigitalmarketing.com.au/195-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1254", "1", "2018-07-24 05:08:53", "2018-07-24 05:08:53", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Duttons Service Centre</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|54px|0px\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>A new vehicle service centre currently under construction for Dutton Motors, who specialise in Volkswagen, Subaru and Holden. Duttons already have sales premises in Totness and Murray Bridge, and this new site is expected to be completed in late 2018.</p>\n<p><strong> Our Involvement: Design, Town Planning, Project Management, Cost Control, Interior Design</strong></p>\n<p>Builder: <a href=\"http://www.gehughes.com.au/\" target=\"_blank\" rel=\"noopener noreferrer\">GE Hughes Constructions</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1215,1213\" gallery_orderby=\"rand\" gallery_captions=\",\" posts_number=\"2\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Duttons Service Centre", "", "inherit", "closed", "closed", "", "1214-revision-v1", "", "", "2018-07-24 05:08:53", "2018-07-24 05:08:53", "", "1214", "https://beyondink.alluredigitalmarketing.com.au/1214-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1252", "1", "2018-07-24 05:07:55", "2018-07-24 05:07:55", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>123 Greenhill Road</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|21px|0px\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f3f3f3\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>Now a commercial office building, originally 123 Greenhill Road was the Adelaide Steamship building - and later, Rural Press.</p>\n<p>In its redesign, we retained the existing building behind the façade and provided an economical visual solution to overcome the challenges the building presented.</p>\n<p>The interior of the building was gutted to provide for a more contemporary office layout, and the new frontage of the building now allows for a virtually unbroken view across the South Parklands.</p>\n<p><strong>Our Involvement: Design, Town Planning</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"32px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"990,989,988,1004\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "123 Greenhill Road", "", "inherit", "closed", "closed", "", "985-revision-v1", "", "", "2018-07-24 05:07:55", "2018-07-24 05:07:55", "", "985", "https://beyondink.alluredigitalmarketing.com.au/985-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1255", "1", "2018-07-24 05:09:16", "2018-07-24 05:09:16", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Duttons Service Centre</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|54px|0px\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>A new vehicle service centre currently under construction for Dutton Motors, who specialise in Volkswagen, Subaru and Holden. Duttons already have sales premises in Totness and Murray Bridge, and this new site is expected to be completed in late 2018.</p>\n<p><strong> Our Involvement: Design, Town Planning, Project Management, Cost Control, Interior Design</strong></p>\n<p>Builder: <a href=\"http://www.gehughes.com.au/\" target=\"_blank\" rel=\"noopener noreferrer\">GE Hughes Constructions</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1215,1213\" gallery_orderby=\"rand\" gallery_captions=\",\" posts_number=\"2\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Duttons Service Centre", "", "inherit", "closed", "closed", "", "1214-revision-v1", "", "", "2018-07-24 05:09:16", "2018-07-24 05:09:16", "", "1214", "https://beyondink.alluredigitalmarketing.com.au/1214-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1257", "1", "2018-07-24 05:11:46", "2018-07-24 05:11:46", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>The Haus Cafe+Bar+Kitchen</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The Haus Restaurant, on the main street of Hahndorf, is owned and operated by the Duffield family. We\'ve had the pleasure of working with the Duffield\'s on various projects over the past 25 years - including various hospitality and accommodation venues; and now the refurbishment of those same venues.</p>\n<p>The Haus hosts a lot of conferences and functions as well as provides catering off-site, and have <span style=\"font-size: 18px;\">just been awarded Venue Caterer of the Year at the 2018 Savour Australia Restaurant and Catering Awards.</span></p>\n<p><strong>Our Involvement: Project Management, Cost Control, Town Planning</strong></p>\n<p>Hint: when you visit the restaurant make sure you check out the murals which have been stencilled on the walls - they tell a story of the history of Hahndorf. They show the ships arriving, residents tending to crops, a <a href=\"../the-manna-motel-of-hahndorf/\">pear tree</a>, and more.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"604,605,606,607,608\" gallery_orderby=\"rand\" gallery_captions=\",,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "The Haus Cafe+Bar+Kitchen", "", "inherit", "closed", "closed", "", "600-revision-v1", "", "", "2018-07-24 05:11:46", "2018-07-24 05:11:46", "", "600", "https://beyondink.alluredigitalmarketing.com.au/600-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1275", "1", "2018-07-24 05:23:05", "2018-07-24 05:23:05", "", "The Haus Studio Apartments", "", "inherit", "open", "closed", "", "2017-haus-studio-apartments-exterior-1-800x533", "", "", "2018-07-24 05:23:40", "2018-07-24 05:23:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2017-Haus-Studio-Apartments-Exterior-1-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1276", "1", "2018-07-24 05:23:10", "2018-07-24 05:23:10", "", "The Haus Studio Apartments", "", "inherit", "open", "closed", "", "2017-haus-studio-apartments-exterior-2-800x533", "", "", "2018-07-24 05:24:04", "2018-07-24 05:24:04", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2017-Haus-Studio-Apartments-Exterior-2-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1277", "1", "2018-07-24 05:23:13", "2018-07-24 05:23:13", "", "The Haus Studio Apartments", "", "inherit", "open", "closed", "", "2017-haus-studio-apartments-exterior-3-800x533", "", "", "2018-07-24 05:24:02", "2018-07-24 05:24:02", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2017-Haus-Studio-Apartments-Exterior-3-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1278", "1", "2018-07-24 05:23:16", "2018-07-24 05:23:16", "", "The Haus Studio Apartments", "", "inherit", "open", "closed", "", "2017-haus-studio-apartments-exterior-5-800x533", "", "", "2018-07-24 05:24:00", "2018-07-24 05:24:00", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2017-Haus-Studio-Apartments-Exterior-5-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1279", "1", "2018-07-24 05:23:20", "2018-07-24 05:23:20", "", "The Haus Studio Apartments", "", "inherit", "open", "closed", "", "2017-haus-studio-apartments-exterior-6-800x533", "", "", "2018-07-24 05:23:59", "2018-07-24 05:23:59", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2017-Haus-Studio-Apartments-Exterior-6-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1280", "1", "2018-07-24 05:23:24", "2018-07-24 05:23:24", "", "The Haus Studio Apartments", "", "inherit", "open", "closed", "", "2017-haus-studio-apartments-exterior-7-800x533", "", "", "2018-07-24 05:23:57", "2018-07-24 05:23:57", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2017-Haus-Studio-Apartments-Exterior-7-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1281", "1", "2018-07-24 05:23:26", "2018-07-24 05:23:26", "", "The Haus Studio Apartments", "", "inherit", "open", "closed", "", "2017-haus-studio-apartments-floor-level-2-800x533", "", "", "2018-07-24 05:23:55", "2018-07-24 05:23:55", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2017-Haus-Studio-Apartments-Floor-Level-2-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1282", "1", "2018-07-24 05:23:28", "2018-07-24 05:23:28", "", "The Haus Studio Apartments", "", "inherit", "open", "closed", "", "2017-haus-studio-apartments-floor-level-6-800x533", "", "", "2018-07-24 05:23:51", "2018-07-24 05:23:51", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2017-Haus-Studio-Apartments-Floor-Level-6-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1283", "1", "2018-07-24 05:23:31", "2018-07-24 05:23:31", "", "The Haus Studio Apartments", "", "inherit", "open", "closed", "", "2017-haus-studio-apartments-floor-level-9-800x533", "", "", "2018-07-24 05:23:53", "2018-07-24 05:23:53", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2017-Haus-Studio-Apartments-Floor-Level-9-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1284", "1", "2018-07-24 05:23:33", "2018-07-24 05:23:33", "", "The Haus Studio Apartments", "", "inherit", "open", "closed", "", "2017-haus-studio-apartments-upstairs-2-800x533", "", "", "2018-07-24 05:23:49", "2018-07-24 05:23:49", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2017-Haus-Studio-Apartments-Upstairs-2-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1285", "1", "2018-07-24 05:23:36", "2018-07-24 05:23:36", "The Haus Studio Apartments", "2017 Haus Studio Apartments Upstairs (4) (800x533)", "", "inherit", "open", "closed", "", "2017-haus-studio-apartments-upstairs-4-800x533", "", "", "2018-07-24 05:23:44", "2018-07-24 05:23:44", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2017-Haus-Studio-Apartments-Upstairs-4-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1286", "1", "2018-07-24 05:23:38", "2018-07-24 05:23:38", "", "The Haus Studio Apartments", "", "inherit", "open", "closed", "", "2017-haus-studio-apartments-upstairs-7-800x533", "", "", "2018-07-24 05:23:42", "2018-07-24 05:23:42", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2017-Haus-Studio-Apartments-Upstairs-7-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1287", "1", "2018-07-24 05:23:42", "2018-07-24 05:23:42", "", "The Haus Studio Apartments", "", "inherit", "open", "closed", "", "2018-haus-studio-apartments-exterior-9-800x534", "", "", "2018-07-24 05:23:47", "2018-07-24 05:23:47", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2018-Haus-Studio-Apartments-Exterior-9-800x534.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1259", "1", "2018-07-24 05:14:04", "2018-07-24 05:14:04", "", "The Haus Restaurant", "", "inherit", "open", "closed", "", "2__mcoles__mkc5304-1024x684", "", "", "2018-07-24 05:16:52", "2018-07-24 05:16:52", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2__MCOLES__MKC5304-1024x684.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1265", "1", "2018-07-24 05:17:00", "2018-07-24 05:17:00", "", "The Haus Restaurant", "", "inherit", "open", "closed", "", "159__mcoles__mkc6044-1024x684", "", "", "2018-07-24 05:17:19", "2018-07-24 05:17:19", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/159__MCOLES__MKC6044-1024x684.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1260", "1", "2018-07-24 05:14:39", "2018-07-24 05:14:39", "", "The Haus Restaurant", "", "inherit", "open", "closed", "", "3__mcoles__mkc5307-1024x684", "", "", "2018-07-24 05:16:48", "2018-07-24 05:16:48", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/3__MCOLES__MKC5307-1024x684.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1261", "1", "2018-07-24 05:15:28", "2018-07-24 05:15:28", "", "The Haus Restaurant", "", "inherit", "open", "closed", "", "116__mcoles__mkc5825-1024x684", "", "", "2018-07-24 05:16:45", "2018-07-24 05:16:45", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/116__MCOLES__MKC5825-1024x684.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1262", "1", "2018-07-24 05:15:53", "2018-07-24 05:15:53", "", "The Haus Restaurant", "", "inherit", "open", "closed", "", "125__mcoles__mkc0338-1024x684", "", "", "2018-07-24 05:16:32", "2018-07-24 05:16:32", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/125__MCOLES__MKC0338-1024x684.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1263", "1", "2018-07-24 05:16:18", "2018-07-24 05:16:18", "", "The Haus Restaurant", "", "inherit", "open", "closed", "", "128__mcoles__mkc0347-684x1024", "", "", "2018-07-24 05:16:40", "2018-07-24 05:16:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/128__MCOLES__MKC0347-684x1024.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1264", "1", "2018-07-24 05:16:44", "2018-07-24 05:16:44", "", "The Haus Restaurant", "", "inherit", "open", "closed", "", "144__mcoles__mkc5970-684x1024", "", "", "2018-07-24 05:17:14", "2018-07-24 05:17:14", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/144__MCOLES__MKC5970-684x1024.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1266", "1", "2018-07-24 05:17:13", "2018-07-24 05:17:13", "", "The Haus Restaurant", "", "inherit", "open", "closed", "", "161__mcoles__mkc6054-1024x684", "", "", "2018-07-24 05:17:24", "2018-07-24 05:17:24", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/161__MCOLES__MKC6054-1024x684.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1267", "1", "2018-07-24 05:17:30", "2018-07-24 05:17:30", "", "The Haus Restaurant", "", "inherit", "open", "closed", "", "165__mcoles__mkc6070-1024x684", "", "", "2018-07-24 05:17:46", "2018-07-24 05:17:46", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/165__MCOLES__MKC6070-1024x684.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1268", "1", "2018-07-24 05:17:45", "2018-07-24 05:17:45", "", "The Haus Restaurant", "", "inherit", "open", "closed", "", "167__mcoles__mkc6079-1024x684", "", "", "2018-07-24 05:17:50", "2018-07-24 05:17:50", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/167__MCOLES__MKC6079-1024x684.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1269", "1", "2018-07-24 05:17:56", "2018-07-24 05:17:56", "", "The Haus Restaurant", "", "inherit", "open", "closed", "", "169__mcoles__mkc6097-1024x684", "", "", "2018-07-24 05:18:13", "2018-07-24 05:18:13", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/169__MCOLES__MKC6097-1024x684.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1270", "1", "2018-07-24 05:18:50", "2018-07-24 05:18:50", "", "The Haus Restaurant", "", "inherit", "open", "closed", "", "182__mcoles__mkc6180-1024x684", "", "", "2018-07-24 05:19:22", "2018-07-24 05:19:22", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/182__MCOLES__MKC6180-1024x684.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1271", "1", "2018-07-24 05:19:01", "2018-07-24 05:19:01", "", "The Haus Restaurant", "", "inherit", "open", "closed", "", "231__mcoles__mkc6457-1024x684", "", "", "2018-07-24 05:19:18", "2018-07-24 05:19:18", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/231__MCOLES__MKC6457-1024x684.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1272", "1", "2018-07-24 05:19:38", "2018-07-24 05:19:38", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>The Haus Cafe+Bar+Kitchen</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The Haus Restaurant, on the main street of Hahndorf, is owned and operated by the Duffield family. We\'ve had the pleasure of working with the Duffield\'s on various projects over the past 25 years - including various hospitality and accommodation venues; and now the refurbishment of those same venues.</p>\n<p>The Haus hosts a lot of conferences and functions as well as provides catering off-site, and have <span style=\"font-size: 18px;\">just been awarded Venue Caterer of the Year at the 2018 Savour Australia Restaurant and Catering Awards.</span></p>\n<p><strong>Our Involvement: Project Management, Cost Control, Town Planning</strong></p>\n<p>Hint: when you visit the restaurant make sure you check out the murals which have been stencilled on the walls - they tell a story of the history of Hahndorf. They show the ships arriving, residents tending to crops, a <a href=\"../the-manna-motel-of-hahndorf/\">pear tree</a>, and more.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "The Haus Cafe+Bar+Kitchen", "", "inherit", "closed", "closed", "", "600-revision-v1", "", "", "2018-07-24 05:19:38", "2018-07-24 05:19:38", "", "600", "https://beyondink.alluredigitalmarketing.com.au/600-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1295", "1", "2018-07-24 05:27:42", "2018-07-24 05:27:42", "", "The Manna Motel of Hahndorf", "", "inherit", "open", "closed", "", "2018-the-manna-of-hahndorf-indulgence-spa-suites-1-800x534", "", "", "2018-07-24 05:27:48", "2018-07-24 05:27:48", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2018-The-Manna-Of-Hahndorf-Indulgence-Spa-Suites-1-800x534.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1290", "1", "2018-07-24 05:27:23", "2018-07-24 05:27:23", "", "The Manna Motel of Hahndorf", "", "inherit", "open", "closed", "", "2018-the-manna-of-hahndorf-executive-room-4-800x534", "", "", "2018-07-24 05:27:52", "2018-07-24 05:27:52", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2018-The-Manna-Of-Hahndorf-Executive-Room-4-800x534.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1298", "1", "2018-07-24 05:27:54", "2018-07-24 05:27:54", "", "The Manna Motel of Hahndorf", "", "inherit", "open", "closed", "", "hahndorf-accommodation-group-reception-office-1-800x533", "", "", "2018-07-24 05:28:16", "2018-07-24 05:28:16", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Hahndorf-Accommodation-Group-Reception-Office-1-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1291", "1", "2018-07-24 05:27:28", "2018-07-24 05:27:28", "", "The Manna Motel of Hahndorf", "", "inherit", "open", "closed", "", "2018-the-manna-of-hahndorf-executive-room-5-534x800", "", "", "2018-07-24 05:28:03", "2018-07-24 05:28:03", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2018-The-Manna-Of-Hahndorf-Executive-Room-5-534x800.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1292", "1", "2018-07-24 05:27:32", "2018-07-24 05:27:32", "", "The Manna Motel of Hahndorf", "", "inherit", "open", "closed", "", "2018-the-manna-of-hahndorf-executive-room-6-534x800", "", "", "2018-07-24 05:28:30", "2018-07-24 05:28:30", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2018-The-Manna-Of-Hahndorf-Executive-Room-6-534x800.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1301", "1", "2018-07-24 05:29:48", "2018-07-24 05:29:48", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>The Manna Motel of Hahndorf</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The Manna is part of the Hahndorf Accommodation Group, owned by the Duffield family.</p>\n<p>The site used to be \'The Marketplace in Hahndorf\' - not really a market, but more of a courtyard surrounded by shops. Now \'The Manna\' is a 4 star motel with 50 modern and stylish hotel rooms.</p>\n<p><strong>Our Involvement: Design, Project Management, Town Planning, Cost Control</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"654,1289,1290,1291,1292,1293,1294,1295,1296,1298,1299,1300\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "The Manna Motel of Hahndorf", "", "inherit", "closed", "closed", "", "642-revision-v1", "", "", "2018-07-24 05:29:48", "2018-07-24 05:29:48", "", "642", "https://beyondink.alluredigitalmarketing.com.au/642-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1293", "1", "2018-07-24 05:27:35", "2018-07-24 05:27:35", "", "The Manna Motel of Hahndorf", "", "inherit", "open", "closed", "", "2018-the-manna-of-hahndorf-executive-room-9-800x534", "", "", "2018-07-24 05:27:58", "2018-07-24 05:27:58", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2018-The-Manna-Of-Hahndorf-Executive-Room-9-800x534.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1299", "1", "2018-07-24 05:27:58", "2018-07-24 05:27:58", "", "The Manna Motel of Hahndorf", "", "inherit", "open", "closed", "", "hahndorf-accommodation-group-reception-office-2-800x533", "", "", "2018-07-24 05:28:19", "2018-07-24 05:28:19", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Hahndorf-Accommodation-Group-Reception-Office-2-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1294", "1", "2018-07-24 05:27:39", "2018-07-24 05:27:39", "", "The Manna Motel of Hahndorf", "", "inherit", "open", "closed", "", "2018-the-manna-of-hahndorf-executive-room-13-800x534", "", "", "2018-07-24 05:27:44", "2018-07-24 05:27:44", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2018-The-Manna-Of-Hahndorf-Executive-Room-13-800x534.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1296", "1", "2018-07-24 05:27:48", "2018-07-24 05:27:48", "", "The Manna Motel of Hahndorf", "", "inherit", "open", "closed", "", "2018-the-manna-of-hahndorf-indulgence-spa-suites-19-800x534", "", "", "2018-07-24 05:28:11", "2018-07-24 05:28:11", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2018-The-Manna-Of-Hahndorf-Indulgence-Spa-Suites-19-800x534.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1297", "1", "2018-07-24 05:27:51", "2018-07-24 05:27:51", "", "The Manna Motel of Hahndorf", "", "inherit", "open", "closed", "", "hahndorf-013-800x600", "", "", "2018-07-24 05:28:13", "2018-07-24 05:28:13", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Hahndorf-013-800x600.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1289", "1", "2018-07-24 05:27:18", "2018-07-24 05:27:18", "", "The Manna Motel of Hahndorf", "", "inherit", "open", "closed", "", "2018-the-manna-of-hahndorf-executive-room-1-534x800", "", "", "2018-07-24 05:27:40", "2018-07-24 05:27:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2018-The-Manna-Of-Hahndorf-Executive-Room-1-534x800.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1288", "1", "2018-07-24 05:25:11", "2018-07-24 05:25:11", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>The Haus Studio Apartments</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The Haus Studio Apartments are a part of the Hahndorf Accommodation Group, owned by the Duffield family, whom we\'ve worked closely with over the past 25 years.</p>\n<p>Interesting fact: there is a historic pear tree on the grounds (one of the village\'s original trees). The early settlers of Hahndorf would plant a pear tree near their wells, as they believed it would make the water sweeter. This story forms part of the mural on the internal walls of the <a href=\"../the-haus-cafebarkitchen/\">Haus Restaurant</a>.</p>\n<p><strong>Our Involvement: Design, Project Management, Cost Control</strong></p>\n<p>Builder: Scholz Constructions</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1275,1276,1277,1280,1281,1282,1283,1284,1286,1279,1287,1278\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "The Haus Studio Apartments", "", "inherit", "closed", "closed", "", "613-revision-v1", "", "", "2018-07-24 05:25:11", "2018-07-24 05:25:11", "", "613", "https://beyondink.alluredigitalmarketing.com.au/613-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1300", "1", "2018-07-24 05:28:02", "2018-07-24 05:28:02", "", "The Manna Motel of Hahndorf", "", "inherit", "open", "closed", "", "hahndorf-accommodation-group-reception-office-3-800x533", "", "", "2018-07-24 05:28:21", "2018-07-24 05:28:21", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Hahndorf-Accommodation-Group-Reception-Office-3-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1302", "1", "2018-07-24 05:31:31", "2018-07-24 05:31:31", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Wolf Blass Gallery and Museum</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>This property in Hahndorf was donated by Wolf and Shirley Blass to the Wolf Blass Foundation, for it to become the new Wolf Blass Gallery and Museum - a celebration of the history of winemaking and Wolf Blass\'s life.</p>\n<p>Expected to open in September 2018, the building was formerly a bank - with a ruin at the back of the property. This ruin was, in fact, an old <g class=\"gr_ gr_10 gr-alert gr_spell gr_inline_cards gr_run_anim ContextualSpelling ins-del\" id=\"10\" data-gr-id=\"10\">school house</g> from a book written by Anni Luur Fox. The schoolhouse was in bad shape (175+ years old), but it has now been extensively restored, and the new building built around it. The existing schoolhouse is now a feature inside the gallery and <g class=\"gr_ gr_14 gr-alert gr_gramm gr_inline_cards gr_run_anim Punctuation only-del replaceWithoutSep gr-progress\" id=\"14\" data-gr-id=\"14\">museum,</g> and acts as a cooperage display.</p>\n<p><strong>Our Involvement: Design, Project Management, Cost Control, Town Planning, Interior Design</strong></p>\n<p>Builder: Scholz Constructions</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1206,1207,1208,1209,1210\" gallery_orderby=\"rand\" gallery_captions=\",,,,\" posts_number=\"5\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Wolf Blass Gallery and Museum", "", "inherit", "closed", "closed", "", "1198-revision-v1", "", "", "2018-07-24 05:31:31", "2018-07-24 05:31:31", "", "1198", "https://beyondink.alluredigitalmarketing.com.au/1198-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1311", "1", "2018-07-24 09:58:03", "2018-07-24 09:58:03", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>The Manna Motel of Hahndorf</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The Manna, a 4-start motel with 50 hotel rooms, is part of the Hahndorf Accommodation Group, owned by the Duffield family.</p>\n<p>The Manna site used to be \'The Marketplace in Hahndorf\' - not necessarily a market, but more of a courtyard surrounded by shops.</p>\n<p><strong>Our Involvement: Design, Project Management, Town Planning, Cost Control</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"654,1289,1290,1291,1292,1293,1294,1295,1296,1298,1299,1300\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "The Manna Motel of Hahndorf", "", "inherit", "closed", "closed", "", "642-revision-v1", "", "", "2018-07-24 09:58:03", "2018-07-24 09:58:03", "", "642", "https://beyondink.alluredigitalmarketing.com.au/642-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1308", "1", "2018-07-24 09:54:56", "2018-07-24 09:54:56", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>The Manna Motel of Hahndorf</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The Manna is part of the Hahndorf Accommodation Group, owned by the Duffield family.</p>\n<p>The site used to be \'The Marketplace in Hahndorf\' - not necessarily a market, but more of a courtyard surrounded by shops. Now The Manna is a 4-star motel with 50 modern and stylish hotel rooms.</p>\n<p><strong>Our Involvement: Design, Project Management, Town Planning, Cost Control</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"654,1289,1290,1291,1292,1293,1294,1295,1296,1298,1299,1300\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "The Manna Motel of Hahndorf", "", "inherit", "closed", "closed", "", "642-revision-v1", "", "", "2018-07-24 09:54:56", "2018-07-24 09:54:56", "", "642", "https://beyondink.alluredigitalmarketing.com.au/642-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1307", "1", "2018-07-24 09:52:28", "2018-07-24 09:52:28", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>The Haus Studio Apartments</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The Haus Studio Apartments are a part of the Hahndorf Accommodation Group, owned by the Duffield family, whom we\'ve worked closely with over the past 25 years.</p>\n<p><strong>Our Involvement: Design, Project Management, Cost Control</strong></p>\n<p>Builder: Scholz Constructions</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1275,1276,1277,1280,1281,1282,1283,1284,1286,1279,1287,1278\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>Interesting fact: there is a historic pear tree on the grounds (one of the village\'s original trees). The early settlers of Hahndorf would plant a pear tree near their wells, as they believed it would make the water sweeter. This story forms part of the mural on the internal walls of the <a href=\"../the-haus-cafebarkitchen/\">Haus Restaurant</a>.</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "The Haus Studio Apartments", "", "inherit", "closed", "closed", "", "613-revision-v1", "", "", "2018-07-24 09:52:28", "2018-07-24 09:52:28", "", "613", "https://beyondink.alluredigitalmarketing.com.au/613-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1306", "1", "2018-07-24 09:51:13", "2018-07-24 09:51:13", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>The Haus Cafe+Bar+Kitchen</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The Haus Restaurant, on the main street of Hahndorf, is owned and operated by the Duffield family. We\'ve had the pleasure of working with the Duffield\'s on various projects over the past 25 years - including various hospitality and accommodation venues; and now the refurbishment of those same venues.</p>\n<p><strong>Our Involvement: Project Management, Cost Control, Town Planning</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The Haus host a lot of conferences and functions as well as provides catering off-site, and have <span style=\"font-size: 18px;\">just been awarded Venue Caterer of the Year at the 2018 Savour Australia Restaurant and Catering Awards.</span></p>\n<p>Hint: when you visit the restaurant make sure you check out the murals which have been stencilled on the walls - they tell a story of the history of Hahndorf. They show the ships arriving, residents tending to crops, a <a href=\"../the-manna-motel-of-hahndorf/\">pear tree</a>, and more.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "The Haus Cafe+Bar+Kitchen", "", "inherit", "closed", "closed", "", "600-revision-v1", "", "", "2018-07-24 09:51:13", "2018-07-24 09:51:13", "", "600", "https://beyondink.alluredigitalmarketing.com.au/600-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1309", "1", "2018-07-24 09:56:01", "2018-07-24 09:56:01", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>The Lane Vineyard</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>We\'ve been involved with the beautiful Lane Vineyard since the beginning - having designed it initially and then being involved in a number of improvements/additions that\'ve been made since then.</p>\n<p><strong>Our involvement: Design, Town Planning, Project Management, Cost Control</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"2px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"585,587,588,590,591,592,595,593\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The Lane Vineyard site includes the winery, cellar door and restaurant.</p>\n<p>The Lane host a lot of events and functions, and are a highly desired and popular wedding location.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "The Lane Vineyard", "", "inherit", "closed", "closed", "", "580-revision-v1", "", "", "2018-07-24 09:56:01", "2018-07-24 09:56:01", "", "580", "https://beyondink.alluredigitalmarketing.com.au/580-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1317", "1", "2018-07-24 10:02:15", "2018-07-24 10:02:15", "[et_pb_row custom_padding=\"27px|0|59px|0px\" _builder_version=\"3.0.106\" template_type=\"row\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/murray-bridge-racing-club/\" align=\"center\" _builder_version=\"3.0.106\" max_width=\"60%\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"-50px|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]&nbsp;\r\n\r\n<span style=\"font-size: 18px;\">Racing at Gifford Hill - Murray Bridge Racing Club</span>\r[/et_pb_text][/et_pb_column][/et_pb_row]", "Coming Soon", "", "publish", "closed", "closed", "", "coming-soon", "", "", "2018-07-24 10:02:15", "2018-07-24 10:02:15", "", "0", "https://beyondink.alluredigitalmarketing.com.au/et_pb_layout/coming-soon/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("1313", "1", "2018-07-24 09:58:38", "2018-07-24 09:58:38", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>The Manna Motel of Hahndorf</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The Manna, a 4-start motel with 50 hotel rooms, is part of the <a href=\"http://www.hahndorfaccommodation.com.au/\" target=\"_blank\" rel=\"noopener noreferrer\">Hahndorf Accommodation Group</a>, owned by the Duffield family.</p>\n<p>The Manna site used to be \'The Marketplace in Hahndorf\' - not necessarily a market, but more of a courtyard surrounded by shops.</p>\n<p><strong>Our Involvement: Design, Project Management, Town Planning, Cost Control</strong></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"654,1289,1290,1291,1292,1293,1294,1295,1296,1298,1299,1300\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "The Manna Motel of Hahndorf", "", "inherit", "closed", "closed", "", "642-revision-v1", "", "", "2018-07-24 09:58:38", "2018-07-24 09:58:38", "", "642", "https://beyondink.alluredigitalmarketing.com.au/642-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1316", "1", "2018-07-24 10:00:23", "2018-07-24 10:00:23", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>123 Greenhill Road</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|21px|0px\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f3f3f3\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>In the redesign of 123 Greenhill Road, we retained the existing building behind the façade and provided an economical visual solution to overcome the challenges the building presented.</p>\n<p>The interior of the building was gutted to provide for a more contemporary office layout, and the new frontage of the building now allows for a virtually unbroken view across the South Parklands.</p>\n<p><strong>Our Involvement: Design, Town Planning</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"32px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"990,989,988,1004\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|21px|0px\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f3f3f3\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>Now a commercial office building, originally 123 Greenhill Road was the Adelaide Steamship building - and later, Rural Press.<span style=\"font-size: 18px;\"> </span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "123 Greenhill Road", "", "inherit", "closed", "closed", "", "985-revision-v1", "", "", "2018-07-24 10:00:23", "2018-07-24 10:00:23", "", "985", "https://beyondink.alluredigitalmarketing.com.au/985-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1315", "1", "2018-07-24 10:00:13", "2018-07-24 10:00:13", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>123 Greenhill Road</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|21px|0px\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f3f3f3\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>In the redesign of 123 Greenhill Road, we retained the existing building behind the façade and provided an economical visual solution to overcome the challenges the building presented.</p>\n<p>The interior of the building was gutted to provide for a more contemporary office layout, and the new frontage of the building now allows for a virtually unbroken view across the South Parklands.</p>\n<p><strong>Our Involvement: Design, Town Planning</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"32px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"990,989,988,1004\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|21px|0px\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f3f3f3\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>Now a commercial office building, originally 123 Greenhill Road was the Adelaide Steamship building - and later, Rural Press.</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "123 Greenhill Road", "", "inherit", "closed", "closed", "", "985-revision-v1", "", "", "2018-07-24 10:00:13", "2018-07-24 10:00:13", "", "985", "https://beyondink.alluredigitalmarketing.com.au/985-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1327", "1", "2018-07-24 10:15:54", "2018-07-24 10:15:54", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Coming Soon</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"27px|0|59px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/murray-bridge-racing-club/\" align=\"center\" _builder_version=\"3.0.106\" force_fullwidth=\"on\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"-50px|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]&nbsp;\r\n\r\n<span style=\"font-size: 18px;\">Racing at Gifford Hill - Murray Bridge Racing Club</span>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|50px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Duttons.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/duttons-service-centre/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Duttons Service Centre</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/CAMBRIDGE-WOODSIDE-SUPERMARKET-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/aldgate-renovation/https://beyondink.alluredigitalmarketing.com.au/kloses-supermarket-woodside/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Klose\'s Supermarket Woodside</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Wolf-Blass.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/battunga-residence/https://beyondink.alluredigitalmarketing.com.au/wolf-blass-gallery-and-museum/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Wolf Blass Gallery and Museum</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Coming Soon", "", "inherit", "closed", "closed", "", "195-revision-v1", "", "", "2018-07-24 10:15:54", "2018-07-24 10:15:54", "", "195", "https://beyondink.alluredigitalmarketing.com.au/195-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1330", "1", "2018-07-24 10:26:28", "2018-07-24 10:26:28", "", "123 Greenhill Road", "", "inherit", "open", "closed", "", "123-greenhill-road-old2", "", "", "2018-07-24 10:27:11", "2018-07-24 10:27:11", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/123-Greenhill-Road-Old2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1331", "1", "2018-07-24 10:27:06", "2018-07-24 10:27:06", "", "123 Greenhill Road", "", "inherit", "open", "closed", "", "123-greenhill-road-old", "", "", "2018-07-24 10:27:58", "2018-07-24 10:27:58", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/123-Greenhill-Road-Old.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1332", "1", "2018-07-24 10:30:54", "2018-07-24 10:30:54", "", "123 Greenhill Road", "", "inherit", "open", "closed", "", "123-greenhill-road-2", "", "", "2018-07-24 10:30:54", "2018-07-24 10:30:54", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/123-Greenhill-Road.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1333", "1", "2018-07-24 10:31:35", "2018-07-24 10:31:35", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>123 Greenhill Road</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|21px|0px\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f3f3f3\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>In the redesign of 123 Greenhill Road, we retained the existing building behind the façade and provided an economical visual solution to overcome the challenges the building presented.</p>\n<p>The interior of the building was gutted to provide for a more contemporary office layout, and the new frontage of the building now allows for a virtually unbroken view across the South Parklands.</p>\n<p><strong>Our Involvement: Design, Town Planning</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"32px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"990,989,988,1004\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|21px|0px\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f3f3f3\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>Now a commercial office building, originally 123 Greenhill Road was the Adelaide Steamship building - and later, Rural Press.</p>\n<p>S<span style=\"font-size: 18px;\">ee before images below.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.106\" custom_padding=\"58px|0px|27px|0px\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/123-Greenhill-Road.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/123-Greenhill-Road-Old2.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "123 Greenhill Road", "", "inherit", "closed", "closed", "", "985-revision-v1", "", "", "2018-07-24 10:31:35", "2018-07-24 10:31:35", "", "985", "https://beyondink.alluredigitalmarketing.com.au/985-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1319", "1", "2018-07-24 10:11:01", "2018-07-24 10:11:01", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"194deg\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705-e1525939024788.jpg\" custom_padding=\"9.8%|0px|123px|0px\"][et_pb_row custom_padding=\"0|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Commercial Projects</h1>\n<span style=\"color: #ffffff;\">We specialise in major regional developments - from design and construction to entire management of your project.</span> [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"50px|0px|50px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Lane-Winery.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-lane-vineyard/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">The Lane Winery</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Barker-Plaza-Entrance-800x534.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/barker-plaza/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">Barker Plaza Shopping Centre</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Hahndorf.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-haus-cafebarkitchen/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">The Haus Cafe+Bar+Kitchen</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Studio-Apartments.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-manna-apartments-2/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">The Haus Studio Apartments</span> [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||50px|\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/K1-Winery-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/k1-winery/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">K1 Winery</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/55708_165645590125507_7049646_o.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-manna-motel-of-hahndorf/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">The Manna Motel of Hahndorf</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Inavogue-Showroom-2-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/inavogue-showroom/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">Inavogue Showroom</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Pulteney-Plaza-Apartments-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/pulteney-plaza-adelaide/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">Pulteney Plaza Apartments</span> [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|50px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Rivercorp-Monarto-Apple-Processing-Plant.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/rivercorp-monarto-apple-processing-facility/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">Rivercorp Monarto Apple Processing Facility</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Elders-Strathalbyn-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/elders-strathalbyn/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">Elders Strathalbyn</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"27px|0|59px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/coming-soon/\" align=\"center\" _builder_version=\"3.0.106\" max_width=\"60%\" custom_padding=\"||30px|\"][/et_pb_image][et_pb_cta title=\"COMING SOON\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/coming-soon/\" button_text=\"Discover our Work in Progress\" _builder_version=\"3.0.106\" header_font=\"||||||||\" header_level=\"h1\" header_font_size=\"65px\" header_text_shadow_style=\"preset3\" body_font=\"||||||||\" box_shadow_style=\"preset3\" custom_button=\"on\" button_font=\"||||||||\" button_text_size=\"17px\" button_icon=\"%%32%%\" button_on_hover=\"off\" box_shadow_style_button=\"preset3\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Commercial", "", "inherit", "closed", "closed", "", "175-revision-v1", "", "", "2018-07-24 10:11:01", "2018-07-24 10:11:01", "", "175", "https://beyondink.alluredigitalmarketing.com.au/175-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1321", "1", "2018-07-24 10:12:28", "2018-07-24 10:12:28", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"194deg\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705-e1525939024788.jpg\" custom_padding=\"9.8%|0px|123px|0px\"][et_pb_row custom_padding=\"0|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Commercial Projects</h1>\n<span style=\"color: #ffffff;\">We specialise in major regional developments - from design and construction to entire management of your project.</span> [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"50px|0px|50px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Lane-Winery.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-lane-vineyard/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">The Lane Winery</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Barker-Plaza-Entrance-800x534.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/barker-plaza/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">Barker Plaza Shopping Centre</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Hahndorf.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-haus-cafebarkitchen/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">The Haus Cafe+Bar+Kitchen</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Studio-Apartments.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-manna-apartments-2/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">The Haus Studio Apartments</span> [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||50px|\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/K1-Winery-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/k1-winery/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">K1 Winery</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/55708_165645590125507_7049646_o.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-manna-motel-of-hahndorf/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">The Manna Motel of Hahndorf</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Inavogue-Showroom-2-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/inavogue-showroom/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">Inavogue Showroom</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Pulteney-Plaza-Apartments-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/pulteney-plaza-adelaide/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">Pulteney Plaza Apartments</span> [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|50px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Rivercorp-Monarto-Apple-Processing-Plant.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/rivercorp-monarto-apple-processing-facility/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">Rivercorp Monarto Apple Processing Facility</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Elders-Strathalbyn-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/elders-strathalbyn/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">Elders Strathalbyn</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"27px|0|59px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/coming-soon/\" align=\"center\" _builder_version=\"3.0.106\" max_width=\"60%\" custom_padding=\"||30px|\"][/et_pb_image][et_pb_cta title=\"COMING SOON\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/coming-soon/\" button_text=\"Discover our Work in Progress\" _builder_version=\"3.0.106\" header_font=\"||||||||\" header_level=\"h1\" header_font_size=\"65px\" header_text_shadow_style=\"preset3\" body_font=\"||||||||\" box_shadow_style=\"preset3\" custom_button=\"on\" button_font=\"||||||||\" button_bg_color=\"#ffffff\" button_text_size=\"17px\" button_icon=\"%%32%%\" button_on_hover=\"off\" box_shadow_style_button=\"preset3\" button_text_color=\"#000000\" button_border_color=\"#ffffff\" button_bg_color_hover=\"rgba(255,255,255,0.05)\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Commercial", "", "inherit", "closed", "closed", "", "175-revision-v1", "", "", "2018-07-24 10:12:28", "2018-07-24 10:12:28", "", "175", "https://beyondink.alluredigitalmarketing.com.au/175-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1323", "1", "2018-07-24 10:13:29", "2018-07-24 10:13:29", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"194deg\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705-e1525939024788.jpg\" custom_padding=\"9.8%|0px|123px|0px\"][et_pb_row custom_padding=\"0|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Commercial Projects</h1>\n<span style=\"color: #ffffff;\">We specialise in major regional developments - from design and construction to entire management of your project.</span> [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"50px|0px|50px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Lane-Winery.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-lane-vineyard/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">The Lane Winery</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Barker-Plaza-Entrance-800x534.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/barker-plaza/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">Barker Plaza Shopping Centre</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Hahndorf.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-haus-cafebarkitchen/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">The Haus Cafe+Bar+Kitchen</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Studio-Apartments.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-manna-apartments-2/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">The Haus Studio Apartments</span> [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||50px|\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/K1-Winery-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/k1-winery/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">K1 Winery</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/55708_165645590125507_7049646_o.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-manna-motel-of-hahndorf/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">The Manna Motel of Hahndorf</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Inavogue-Showroom-2-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/inavogue-showroom/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">Inavogue Showroom</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Pulteney-Plaza-Apartments-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/pulteney-plaza-adelaide/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">Pulteney Plaza Apartments</span> [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|50px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Rivercorp-Monarto-Apple-Processing-Plant.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/rivercorp-monarto-apple-processing-facility/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">Rivercorp Monarto Apple Processing Facility</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Elders-Strathalbyn-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/elders-strathalbyn/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">Elders Strathalbyn</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"27px|0|59px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/coming-soon/\" align=\"center\" _builder_version=\"3.0.106\" max_width=\"60%\" custom_padding=\"||30px|\"][/et_pb_image][et_pb_cta title=\"COMING SOON\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/coming-soon/\" button_text=\"Discover our Work in Progress\" _builder_version=\"3.0.106\" header_font=\"||||||||\" header_level=\"h1\" header_font_size=\"65px\" header_text_shadow_style=\"preset3\" body_font=\"||||||||\" box_shadow_style=\"preset3\" custom_button=\"on\" button_font=\"||||||||\" button_bg_color=\"#ffffff\" button_text_size=\"17px\" button_icon=\"%%32%%\" button_on_hover=\"off\" box_shadow_style_button=\"preset3\" button_text_color=\"#000000\" button_border_color=\"#ffffff\" button_bg_color_hover=\"rgba(255,255,255,0.05)\" max_width_last_edited=\"on|phone\" max_width_tablet=\"74%\" max_width_phone=\"91%\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Commercial", "", "inherit", "closed", "closed", "", "175-revision-v1", "", "", "2018-07-24 10:13:29", "2018-07-24 10:13:29", "", "175", "https://beyondink.alluredigitalmarketing.com.au/175-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1326", "1", "2018-07-24 10:15:29", "2018-07-24 10:15:29", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Coming Soon</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"27px|0|59px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/murray-bridge-racing-club/\" align=\"center\" _builder_version=\"3.0.106\" force_fullwidth=\"on\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"-50px|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]&nbsp;\r\n\r\n<span style=\"font-size: 18px;\">Racing at Gifford Hill - Murray Bridge Racing Club</span>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"41px|0px|50px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Duttons.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/duttons-service-centre/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Duttons Service Centre</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/CAMBRIDGE-WOODSIDE-SUPERMARKET-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/aldgate-renovation/https://beyondink.alluredigitalmarketing.com.au/kloses-supermarket-woodside/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Klose\'s Supermarket Woodside</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Wolf-Blass.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/battunga-residence/https://beyondink.alluredigitalmarketing.com.au/wolf-blass-gallery-and-museum/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Wolf Blass Gallery and Museum</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Coming Soon", "", "inherit", "closed", "closed", "", "195-revision-v1", "", "", "2018-07-24 10:15:29", "2018-07-24 10:15:29", "", "195", "https://beyondink.alluredigitalmarketing.com.au/195-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1325", "1", "2018-07-24 10:14:27", "2018-07-24 10:14:27", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"194deg\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705-e1525939024788.jpg\" custom_padding=\"9.8%|0px|123px|0px\"][et_pb_row custom_padding=\"0|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Commercial Projects</h1>\n<span style=\"color: #ffffff;\">We specialise in major regional developments - from design and construction to entire management of your project.</span> [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"50px|0px|50px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Lane-Winery.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-lane-vineyard/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">The Lane Winery</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Barker-Plaza-Entrance-800x534.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/barker-plaza/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">Barker Plaza Shopping Centre</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Hahndorf.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-haus-cafebarkitchen/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">The Haus Cafe+Bar+Kitchen</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Studio-Apartments.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-manna-apartments-2/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">The Haus Studio Apartments</span> [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||50px|\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/K1-Winery-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/k1-winery/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">K1 Winery</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/55708_165645590125507_7049646_o.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-manna-motel-of-hahndorf/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">The Manna Motel of Hahndorf</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Inavogue-Showroom-2-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/inavogue-showroom/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">Inavogue Showroom</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Pulteney-Plaza-Apartments-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/pulteney-plaza-adelaide/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">Pulteney Plaza Apartments</span> [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|50px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Rivercorp-Monarto-Apple-Processing-Plant.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/rivercorp-monarto-apple-processing-facility/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">Rivercorp Monarto Apple Processing Facility</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Elders-Strathalbyn-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/elders-strathalbyn/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"] <span style=\"font-size: 18px;\">Elders Strathalbyn</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"27px|0|59px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/coming-soon/\" align=\"center\" _builder_version=\"3.0.106\" max_width=\"60%\" custom_padding=\"||30px|\"][/et_pb_image][et_pb_cta title=\"COMING SOON\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/coming-soon/\" button_text=\"Discover our Work in Progress\" _builder_version=\"3.0.106\" header_font=\"||||||||\" header_level=\"h1\" header_font_size=\"44px\" header_text_shadow_style=\"preset3\" body_font=\"||||||||\" box_shadow_style=\"preset3\" custom_button=\"on\" button_font=\"||||||||\" button_bg_color=\"#ffffff\" button_text_size=\"17px\" box_shadow_style_button=\"preset3\" button_text_color=\"#000000\" button_border_color=\"#ffffff\" button_bg_color_hover=\"rgba(255,255,255,0.05)\" max_width_last_edited=\"on|phone\" max_width_tablet=\"74%\" max_width_phone=\"91%\" button_use_icon=\"off\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Commercial", "", "inherit", "closed", "closed", "", "175-revision-v1", "", "", "2018-07-24 10:14:27", "2018-07-24 10:14:27", "", "175", "https://beyondink.alluredigitalmarketing.com.au/175-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1335", "1", "2018-07-24 10:35:41", "2018-07-24 10:35:41", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>The Haus Hahndorf</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The Haus Restaurant, on the main street of Hahndorf, is owned and operated by the Duffield family. We\'ve had the pleasure of working with the Duffield\'s on various projects over the past 25 years - including various hospitality and accommodation venues; and now the refurbishment of those same venues.</p>\n<p><strong>Our Involvement: Project Management, Cost Control, Town Planning</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The Haus host a lot of conferences and functions as well as provides catering off-site, and have <span style=\"font-size: 18px;\">just been awarded Venue Caterer of the Year at the 2018 Savour Australia Restaurant and Catering Awards.</span></p>\n<p>Hint: when you visit the restaurant make sure you check out the murals which have been stencilled on the walls - they tell a story of the history of Hahndorf. They show the ships arriving, residents tending to crops, a <a href=\"../the-manna-motel-of-hahndorf/\">pear tree</a>, and more.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "The Haus Cafe+Bar+Kitchen", "", "inherit", "closed", "closed", "", "600-revision-v1", "", "", "2018-07-24 10:35:41", "2018-07-24 10:35:41", "", "600", "https://beyondink.alluredigitalmarketing.com.au/600-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1337", "1", "2018-07-24 10:36:16", "2018-07-24 10:36:16", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>The Haus Studio Apartments</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The Haus Studio Apartments are a part of the Hahndorf Accommodation Group, owned by the Duffield family, whom we\'ve worked closely with over the past 25 years.</p>\n<p><strong>Our Involvement: Design, Project Management, Cost Control</strong></p>\n<p>Builder: Scholz Constructions</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1275,1276,1277,1280,1281,1282,1283,1284,1286,1279,1287,1278\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>Interesting fact: there is a historic pear tree on the grounds (one of the village\'s original trees). The early settlers of Hahndorf would plant a pear tree near their wells, as they believed it would make the water sweeter. This story forms part of the mural on the internal walls of the <a href=\"../the-haus-cafebarkitchen/\">Haus Restaurant</a>. </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "The Haus Studio Apartments", "", "inherit", "closed", "closed", "", "613-revision-v1", "", "", "2018-07-24 10:36:16", "2018-07-24 10:36:16", "", "613", "https://beyondink.alluredigitalmarketing.com.au/613-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1348", "1", "2018-07-24 10:50:58", "2018-07-24 10:50:58", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#9dd00f\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"27px|0px|11px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Crafers Residence</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\" prev_background_color=\"#9dd00f\" next_background_color=\"#000000\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235,250,246\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\" prev_background_color=\"#000000\"][et_pb_fullwidth_image _builder_version=\"3.0.106\" /][/et_pb_section]", "Former Chapman’s Meatworks Redevelopment & Klose’s Supermarket Nairne", "", "inherit", "closed", "closed", "", "1347-revision-v1", "", "", "2018-07-24 10:50:58", "2018-07-24 10:50:58", "", "1347", "https://beyondink.alluredigitalmarketing.com.au/1347-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1340", "1", "2018-07-24 10:39:05", "2018-07-24 10:39:05", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Wolf Blass Gallery and Museum</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>Donated by Wolf and Shirley Blass to the Wolf Blass Foundation, this property has become the new Wolf Blass Gallery and Museum - a celebration of the history of winemaking and Wolf Blass\'s life.</p>\n<p><strong>Our Involvement: Design, Project Management, Cost Control, Town Planning, Interior Design</strong></p>\n<p>Builder: Scholz Constructions</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1206,1207,1208,1209,1210\" gallery_orderby=\"rand\" gallery_captions=\",,,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>Expected to open in September 2018, the Wolf Blass Gallery and Museum building was formerly a bank - with a ruin at the back of the property. This ruin was, in fact, an old <g class=\"gr_ gr_10 gr-alert gr_spell gr_inline_cards gr_run_anim ContextualSpelling ins-del\" id=\"10\" data-gr-id=\"10\">school house</g> from a book written by Anni Luur Fox.</p>\n<p>The schoolhouse was in bad shape (as it\'s 175+ years old), but it has now been extensively restored, and the new Museum and Gallery building built around it.</p>\n<p>The existing schoolhouse is now a feature inside the gallery and <g class=\"gr_ gr_14 gr-alert gr_gramm gr_inline_cards gr_run_anim Punctuation only-del replaceWithoutSep gr-progress\" id=\"14\" data-gr-id=\"14\">museum,</g> and acts as a cooperage display.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Wolf Blass Gallery and Museum", "", "inherit", "closed", "closed", "", "1198-revision-v1", "", "", "2018-07-24 10:39:05", "2018-07-24 10:39:05", "", "1198", "https://beyondink.alluredigitalmarketing.com.au/1198-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1347", "1", "2018-07-24 10:50:58", "2018-07-24 10:50:58", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1><span>Former Chapman’s Meatworks Redevelopment & Klose’s Supermarket Nairne </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>Set to open in 2019.</p>\n<p><strong>Our Involvement: Design, Town Planning, Landscape Design</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Nairne-Supermarket-Perspective-3-800x347.jpg\" align=\"center\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/IMG_4542-800x178.jpg\" align=\"center\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"16px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1352,1353,1354,1355\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The site has is quite a <a href=\"https://www.weekendnotes.com/disused-chapmans-smallgoods-factory/\" target=\"_blank\" rel=\"noopener noreferrer\">story</a>! Stage 1 of the development is the Klose’s Supermarket, with some specialty shops and a café. A large portion of the buildings will be demolished to make way for stage 1. Stage 2 is intended to be within the remaining buildings, but they are proving difficult to demolish. Therefore, the plan is still being set for the next stage.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Former Chapman’s Meatworks Redevelopment & Klose’s Supermarket Nairne", "", "publish", "closed", "closed", "", "chapmans-meatworks-kloses-supermarket-nairne", "", "", "2018-07-24 12:41:28", "2018-07-24 12:41:28", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=1347", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("1345", "1", "2018-07-24 10:48:01", "2018-07-24 10:48:01", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Klose’s Supermarket Woodside</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The existing Klose’s Supermarket in Woodside had become small and outdated, so we were tasked with designing a more appropriate facility. Just down the road - also in Woodside - the new premises will include a supermarket and bottle shop. It has Planning Consent from Council, and we\'re currently working through the remaining approvals. The new Klose\'s Supermarket is expected to open in 2019.</p>\n<p><strong>Our Involvement: Design, Town Planning, Landscape Design, Project Management, Cost Control</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1231,1230,1229,1228\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p><span style=\"font-size: 18px;\">Klose’s Supermarkets are owned and operated by Adelaide Hills family, the Klose\'s, who have been operating supermarkets in the area since 1902.</span></p>\n<p><span style=\"font-size: 18px;\">The Klose family have a strong community focus, and this was recognised when Barry Klose was awarded an Order of Australia Medal in 2015 - for service to the community. The superamarkets have a strong focus <span>on sourcing local products and produce.</span></span></p>\n<p><span style=\"font-size: 18px;\">The Klose\'s have supermarkets in Lobethal, Woodside, Balhannah, Littlehampton (which we designed), and Birdwood; with another opening in Nairne (which we are also designing). This size makes them a </span><span style=\"font-size: 18px;\">major employer in the Adelaide Hills – currently employing 240 staff.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Klose’s Supermarket Woodside", "", "inherit", "closed", "closed", "", "1223-revision-v1", "", "", "2018-07-24 10:48:01", "2018-07-24 10:48:01", "", "1223", "https://beyondink.alluredigitalmarketing.com.au/1223-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1343", "1", "2018-07-24 10:47:03", "2018-07-24 10:47:03", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Klose’s Supermarket Woodside</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The existing Klose’s Supermarket in Woodside had become small and outdated, so we designed a more appropriate facility for the Klose family - just down the road, also in Woodside. The new premises will include a supermarket and bottle shop. The new development which includes a supermarket and bottleshop, currently has Planning Consent from Council, and we\'re working through the remaining approvals. The new Klose\'s Supermarkert is expected to open in 2019.</p>\n<p><strong>Our Involvement: Design, Town Planning, Landscape Design, Project Management, Cost Control</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1231,1230,1229,1228\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p><span style=\"font-size: 18px;\">Klose’s Supermarkets are owned and operated by Adelaide Hills family, the Klose\'s, who have been operating supermarkets in the area since 1902.</span></p>\n<p><span style=\"font-size: 18px;\">The Klose family have a strong community focus, and this was recognised when Barry Klose was awarded an Order of Australia Medal in 2015 - for service to the community. The superamarkets have a strong focus <span>on sourcing local products and produce.</span></span></p>\n<p><span style=\"font-size: 18px;\">The Klose\'s have supermarkets in Lobethal, Woodside, Balhannah, Littlehampton (which we designed), and Birdwood; with another opening in Nairne (which we are also designing). This size makes them a </span><span style=\"font-size: 18px;\">major employer in the Adelaide Hills – currently employing 240 staff.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Klose’s Supermarket Woodside", "", "inherit", "closed", "closed", "", "1223-revision-v1", "", "", "2018-07-24 10:47:03", "2018-07-24 10:47:03", "", "1223", "https://beyondink.alluredigitalmarketing.com.au/1223-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1361", "1", "2018-07-24 10:59:41", "2018-07-24 10:59:41", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1><span>Former Chapman’s Meatworks Redevelopment & Klose’s Supermarket Nairne </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Nairne-Supermarket-Perspective-3-800x347.jpg\" align=\"center\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/IMG_4542-800x178.jpg\" align=\"center\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"16px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1352,1353,1354,1355\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Former Chapman’s Meatworks Redevelopment & Klose’s Supermarket Nairne", "", "inherit", "closed", "closed", "", "1347-revision-v1", "", "", "2018-07-24 10:59:41", "2018-07-24 10:59:41", "", "1347", "https://beyondink.alluredigitalmarketing.com.au/1347-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1350", "1", "2018-07-24 10:51:23", "2018-07-24 10:51:23", "", "Former Chapman\'s Meatworks Redevelopment", "", "publish", "closed", "closed", "", "1350", "", "", "2018-07-30 02:30:40", "2018-07-30 02:30:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?p=1350", "30", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("1352", "1", "2018-07-24 10:53:43", "2018-07-24 10:53:43", "", "Klose\'s Supermarket Nairne", "", "inherit", "open", "closed", "", "img_2380-800x600", "", "", "2018-07-24 10:55:11", "2018-07-24 10:55:11", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/IMG_2380-800x600.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1353", "1", "2018-07-24 10:53:48", "2018-07-24 10:53:48", "", "Klose\'s Supermarket Nairne", "", "inherit", "open", "closed", "", "img_4528-800x600", "", "", "2018-07-24 10:55:08", "2018-07-24 10:55:08", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/IMG_4528-800x600.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1354", "1", "2018-07-24 10:53:51", "2018-07-24 10:53:51", "", "Klose\'s Supermarket Nairne", "", "inherit", "open", "closed", "", "img_7612-800x600", "", "", "2018-07-24 10:55:06", "2018-07-24 10:55:06", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/IMG_7612-800x600.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1355", "1", "2018-07-24 10:53:55", "2018-07-24 10:53:55", "", "Klose\'s Supermarket Nairne", "", "inherit", "open", "closed", "", "cellars-800x600", "", "", "2018-07-24 10:55:04", "2018-07-24 10:55:04", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Cellars-800x600.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1356", "1", "2018-07-24 10:53:57", "2018-07-24 10:53:57", "", "Klose\'s Supermarket Nairne", "", "inherit", "open", "closed", "", "nairne-supermarket-perspective-3-800x347", "", "", "2018-07-24 10:55:02", "2018-07-24 10:55:02", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Nairne-Supermarket-Perspective-3-800x347.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1357", "1", "2018-07-24 10:54:00", "2018-07-24 10:54:00", "", "Klose\'s Supermarket Nairne", "", "inherit", "open", "closed", "", "img_4542-800x178", "", "", "2018-07-24 10:54:58", "2018-07-24 10:54:58", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/IMG_4542-800x178.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1368", "1", "2018-07-24 11:08:40", "2018-07-24 11:08:40", "#top-menu .current-menu-item a::before,\r\n#top-menu .current_page_item a::before {\r\n content: \"\";\r\n position: absolute;\r\n z-index: 2;\r\n left: 0;\r\n right: 0;\r\n}\r\n#top-menu li a:before {\r\n content: \"\";\r\n position: absolute;\r\n z-index: -2;\r\n left: 0;\r\n right: 100%;\r\n bottom: 50%;\r\n background: #9dd00f; /*** COLOR OF THE LINE ***/\r\n height: 1px; /*** THICKNESS OF THE LINE ***/\r\n -webkit-transition-property: right;\r\n transition-property: right;\r\n -webkit-transition-duration: 0.3s;\r\n transition-duration: 0.3s;\r\n -webkit-transition-timing-function: ease-out;\r\n transition-timing-function: ease-out;\r\n}\r\n#top-menu li a:hover {\r\n opacity: 1 !important;\r\n}\r\n#top-menu li a:hover:before {\r\n right: 0;\r\n}\r\n#top-menu li li a:before {\r\n bottom: 10%;\r\n}\r\n.centerGallery  .et_pb_gallery_item {\r\n    margin-left: 25%;\r\n}", "Divi-child", "", "inherit", "closed", "closed", "", "16-revision-v1", "", "", "2018-07-24 11:08:40", "2018-07-24 11:08:40", "", "16", "https://beyondink.alluredigitalmarketing.com.au/16-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1358", "1", "2018-07-24 10:54:10", "2018-07-24 10:54:10", "#top-menu .current-menu-item a::before,\r\n#top-menu .current_page_item a::before {\r\n content: \"\";\r\n position: absolute;\r\n z-index: 2;\r\n left: 0;\r\n right: 0;\r\n}\r\n#top-menu li a:before {\r\n content: \"\";\r\n position: absolute;\r\n z-index: -2;\r\n left: 0;\r\n right: 100%;\r\n bottom: 50%;\r\n background: #9dd00f; /*** COLOR OF THE LINE ***/\r\n height: 1px; /*** THICKNESS OF THE LINE ***/\r\n -webkit-transition-property: right;\r\n transition-property: right;\r\n -webkit-transition-duration: 0.3s;\r\n transition-duration: 0.3s;\r\n -webkit-transition-timing-function: ease-out;\r\n transition-timing-function: ease-out;\r\n}\r\n#top-menu li a:hover {\r\n opacity: 1 !important;\r\n}\r\n#top-menu li a:hover:before {\r\n right: 0;\r\n}\r\n#top-menu li li a:before {\r\n bottom: 10%;\r\n}\r\n.et_pb_module.et_pb_gallery.et_pb_gallery_0.et_pb_gallery_grid.et_pb_bg_layout_light.clearfix .et_pb_gallery_item.et_pb_grid_item.et_pb_bg_layout_light:first-child {\r\n    margin-left: 25%;\r\n}", "Divi-child", "", "inherit", "closed", "closed", "", "16-revision-v1", "", "", "2018-07-24 10:54:10", "2018-07-24 10:54:10", "", "16", "https://beyondink.alluredigitalmarketing.com.au/16-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1359", "1", "2018-07-24 10:58:10", "2018-07-24 10:58:10", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1><span>Former Chapman’s Meatworks Redevelopment &amp; Klose’s Supermarket Nairne </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Nairne-Supermarket-Perspective-3-800x347.jpg\" _builder_version=\"3.0.106\" align=\"center\"][/et_pb_image][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/IMG_4542-800x178.jpg\" _builder_version=\"3.0.106\" align=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"16px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1352,1353,1354,1355\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Former Chapman’s Meatworks Redevelopment & Klose’s Supermarket Nairne", "", "inherit", "closed", "closed", "", "1347-revision-v1", "", "", "2018-07-24 10:58:10", "2018-07-24 10:58:10", "", "1347", "https://beyondink.alluredigitalmarketing.com.au/1347-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1362", "1", "2018-07-24 11:01:19", "2018-07-24 11:01:19", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Beyond Ink Office</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|54px|0px\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" make_fullwidth=\"on\" module_alignment=\"center\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>We’ve outgrown our little cottage (our original Beyond Ink office), and have had the chance to be our own client...so, we\'re designing a new studio office space in Hahndorf for ourselves.</p>\n<p><strong>Our Involvement: Design, Town Planning, Project Management, Interior Design, Cost Control</strong></p>\n<p>Builder: Matt Rohde - <a href=\"http://kingsgatehomes.com.au/\" target=\"_blank\" rel=\"noopener noreferrer\">Kingsgate Homes</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"2px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1366,1367\" gallery_orderby=\"rand\" gallery_captions=\",\" posts_number=\"2\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" module_class=\"centerGallery \" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|54px|0px\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The new Beyond Ink office will include a community gallery - we want the space to foster our creativity and support that of the community.</p>\n<p>The community gallery will be available to the public, for exhibitions at no cost - to Adelaide Hills emerging artists.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Beyond Ink Office", "", "publish", "closed", "closed", "", "beyond-ink-office", "", "", "2018-07-24 12:36:12", "2018-07-24 12:36:12", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?page_id=1362", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("1363", "1", "2018-07-24 11:01:19", "2018-07-24 11:01:19", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#9dd00f\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"27px|0px|11px|0px\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Crafers Residence</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\" prev_background_color=\"#9dd00f\" next_background_color=\"#000000\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"299,300,302,298,290,289,242,260,253,268,235,250,246\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\" prev_background_color=\"#000000\"][et_pb_fullwidth_image _builder_version=\"3.0.106\" /][/et_pb_section]", "Beyond Ink Office", "", "inherit", "closed", "closed", "", "1362-revision-v1", "", "", "2018-07-24 11:01:19", "2018-07-24 11:01:19", "", "1362", "https://beyondink.alluredigitalmarketing.com.au/1362-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1364", "1", "2018-07-24 11:02:03", "2018-07-24 11:02:03", " ", "", "", "publish", "closed", "closed", "", "1364", "", "", "2018-07-30 02:30:40", "2018-07-30 02:30:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?p=1364", "29", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("1369", "1", "2018-07-24 11:08:48", "2018-07-24 11:08:48", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Beyond Ink (Our New) Office</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|54px|0px\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>We’ve outgrown our little cottage, and have had the chance to be our own client...so, we\'re designing a new studio office space in Hahndorf for ourselves.</p>\n<p><strong>Our Involvement: Design, Town Planning, Project Management, Interior Design, Cost Control</strong></p>\n<p>Builder: Matt Rohde - <a href=\"http://kingsgatehomes.com.au/\" target=\"_blank\" rel=\"noopener noreferrer\">Kingsgate Homes</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"2px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1366,1367\" gallery_orderby=\"rand\" gallery_captions=\",\" posts_number=\"2\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|54px|0px\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The new Beyond Ink office will include a community gallery - we want the space to foster our creativity and support that of the community.</p>\n<p>The community gallery will be available to the public, for exhibitions at no cost - to Adelaide Hills emerging artists.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Beyond Ink Office", "", "inherit", "closed", "closed", "", "1362-revision-v1", "", "", "2018-07-24 11:08:48", "2018-07-24 11:08:48", "", "1362", "https://beyondink.alluredigitalmarketing.com.au/1362-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1366", "1", "2018-07-24 11:03:46", "2018-07-24 11:03:46", "", "Beyond Ink Office", "", "inherit", "open", "closed", "", "bis-new-office-3-628x800", "", "", "2018-07-24 11:03:53", "2018-07-24 11:03:53", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/BIs-New-Office-3-628x800.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1367", "1", "2018-07-24 11:03:50", "2018-07-24 11:03:50", "", "Beyond Ink Office", "", "inherit", "open", "closed", "", "bis-new-office-rear-800x451", "", "", "2018-07-24 11:03:57", "2018-07-24 11:03:57", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/BIs-New-Office-REAR-800x451.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1390", "1", "2018-07-24 11:43:01", "2018-07-24 11:43:01", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Renovations</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"50px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0182-800x533-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/hahndorf-academy/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/hahndorf-academy/\">Hahndorf Academy</a></span></p>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6211-800x533-3.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/skilly-hills-function-centre-restoration-project/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/skilly-hills-function-centre-restoration-project/\">Skilly Hills Function Centre and Renovation Project</a></span></p>\n<p><a href=\"https://beyondink.alluredigitalmarketing.com.au/skilly-hills-function-centre-restoration-project/\"> </a></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Renovations", "", "inherit", "closed", "closed", "", "204-revision-v1", "", "", "2018-07-24 11:43:01", "2018-07-24 11:43:01", "", "204", "https://beyondink.alluredigitalmarketing.com.au/204-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1378", "1", "2018-07-24 11:25:37", "2018-07-24 11:25:37", "", "Klose\'s Supermarket Nairne", "", "inherit", "open", "closed", "", "nairne", "", "", "2018-07-24 11:25:44", "2018-07-24 11:25:44", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Nairne.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1373", "1", "2018-07-24 11:21:16", "2018-07-24 11:21:16", "#top-menu .current-menu-item a::before,\r\n#top-menu .current_page_item a::before {\r\n content: \"\";\r\n position: absolute;\r\n z-index: 2;\r\n left: 0;\r\n right: 0;\r\n}\r\n#top-menu li a:before {\r\n content: \"\";\r\n position: absolute;\r\n z-index: -2;\r\n left: 0;\r\n right: 100%;\r\n bottom: 50%;\r\n background: #9dd00f; /*** COLOR OF THE LINE ***/\r\n height: 1px; /*** THICKNESS OF THE LINE ***/\r\n -webkit-transition-property: right;\r\n transition-property: right;\r\n -webkit-transition-duration: 0.3s;\r\n transition-duration: 0.3s;\r\n -webkit-transition-timing-function: ease-out;\r\n transition-timing-function: ease-out;\r\n}\r\n#top-menu li a:hover {\r\n opacity: 1 !important;\r\n}\r\n#top-menu li a:hover:before {\r\n right: 0;\r\n}\r\n#top-menu li li a:before {\r\n bottom: 10%;\r\n}\r\n.centerGallery .et_pb_gallery_item:first-child {\r\nmargin-left: 25%;\r\n}", "Divi-child", "", "inherit", "closed", "closed", "", "16-revision-v1", "", "", "2018-07-24 11:21:16", "2018-07-24 11:21:16", "", "16", "https://beyondink.alluredigitalmarketing.com.au/16-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1372", "1", "2018-07-24 11:17:02", "2018-07-24 11:17:02", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Duttons Service Centre</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|54px|0px\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>A new vehicle service centre currently under construction for Dutton Motors, who specialise in Volkswagen, Subaru and Holden. Duttons already have sales premises in Totness and Murray Bridge, and this new site is expected to be completed in late 2018.</p>\n<p><strong> Our Involvement: Design, Town Planning, Project Management, Cost Control, Interior Design</strong></p>\n<p>Builder: <a href=\"http://www.gehughes.com.au/\" target=\"_blank\" rel=\"noopener noreferrer\">GE Hughes Constructions</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1215,1213\" gallery_orderby=\"rand\" gallery_captions=\",\" posts_number=\"2\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" module_class=\"centerGallery\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Duttons Service Centre", "", "inherit", "closed", "closed", "", "1214-revision-v1", "", "", "2018-07-24 11:17:02", "2018-07-24 11:17:02", "", "1214", "https://beyondink.alluredigitalmarketing.com.au/1214-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1376", "1", "2018-07-24 11:22:22", "2018-07-24 11:22:22", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Beyond Ink Office</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|54px|0px\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>We’ve outgrown our little cottage (our original Beyond Ink office), and have had the chance to be our own client...so, we\'re designing a new studio office space in Hahndorf for ourselves.</p>\n<p><strong>Our Involvement: Design, Town Planning, Project Management, Interior Design, Cost Control</strong></p>\n<p>Builder: Matt Rohde - <a href=\"http://kingsgatehomes.com.au/\" target=\"_blank\" rel=\"noopener noreferrer\">Kingsgate Homes</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"2px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1366,1367\" gallery_orderby=\"rand\" gallery_captions=\",\" posts_number=\"2\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" module_class=\"centerGallery \"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|54px|0px\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The new Beyond Ink office will include a community gallery - we want the space to foster our creativity and support that of the community.</p>\n<p>The community gallery will be available to the public, for exhibitions at no cost - to Adelaide Hills emerging artists.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Beyond Ink Office", "", "inherit", "closed", "closed", "", "1362-revision-v1", "", "", "2018-07-24 11:22:22", "2018-07-24 11:22:22", "", "1362", "https://beyondink.alluredigitalmarketing.com.au/1362-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1375", "1", "2018-07-24 11:22:04", "2018-07-24 11:22:04", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Beyond Ink (Our New) Office</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|54px|0px\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>We’ve outgrown our little cottage, and have had the chance to be our own client...so, we\'re designing a new studio office space in Hahndorf for ourselves.</p>\n<p><strong>Our Involvement: Design, Town Planning, Project Management, Interior Design, Cost Control</strong></p>\n<p>Builder: Matt Rohde - <a href=\"http://kingsgatehomes.com.au/\" target=\"_blank\" rel=\"noopener noreferrer\">Kingsgate Homes</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"2px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1366,1367\" gallery_orderby=\"rand\" gallery_captions=\",\" posts_number=\"2\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" module_class=\"centerGallery \"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|54px|0px\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The new Beyond Ink office will include a community gallery - we want the space to foster our creativity and support that of the community.</p>\n<p>The community gallery will be available to the public, for exhibitions at no cost - to Adelaide Hills emerging artists.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Beyond Ink Office", "", "inherit", "closed", "closed", "", "1362-revision-v1", "", "", "2018-07-24 11:22:04", "2018-07-24 11:22:04", "", "1362", "https://beyondink.alluredigitalmarketing.com.au/1362-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1394", "1", "2018-07-24 11:50:01", "0000-00-00 00:00:00", " ", "", "", "draft", "closed", "closed", "", "", "", "", "2018-07-24 11:50:01", "0000-00-00 00:00:00", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?p=1394", "1", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("1395", "1", "2018-07-24 11:51:37", "2018-07-24 11:51:37", "", "Littlehampton Renovation - Before", "", "inherit", "open", "closed", "", "before-1-800x600", "", "", "2018-07-24 11:51:56", "2018-07-24 11:51:56", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Before-1-800x600.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1396", "1", "2018-07-24 11:51:41", "2018-07-24 11:51:41", "", "Littlehampton Renovation - After", "", "inherit", "open", "closed", "", "img_0627-800x533", "", "", "2018-07-24 11:52:08", "2018-07-24 11:52:08", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/IMG_0627-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1397", "1", "2018-07-24 11:51:44", "2018-07-24 11:51:44", "", "Littlehampton Renovation", "", "inherit", "open", "closed", "", "stairs-1-800x533", "", "", "2018-07-24 11:52:11", "2018-07-24 11:52:11", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Stairs-1-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1398", "1", "2018-07-24 11:51:48", "2018-07-24 11:51:48", "", "Littlehampton Renovation - Before", "", "inherit", "open", "closed", "", "img_0633-800x533", "", "", "2018-07-24 11:52:14", "2018-07-24 11:52:14", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/IMG_0633-800x533.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1399", "1", "2018-07-24 11:51:59", "2018-07-24 11:51:59", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Littlehampton Renovation and Additions</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#F1F1F1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>This residential project included significant alterations and additions to the existing dwelling.</p>\n<p><strong>Our Involvement: Design, Project Management, Town Planning, Cost Control</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"479,481,482,483,485,486,487,488,489,490,491,492\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Littlehampton Renovation and Additions", "", "inherit", "closed", "closed", "", "474-revision-v1", "", "", "2018-07-24 11:51:59", "2018-07-24 11:51:59", "", "474", "https://beyondink.alluredigitalmarketing.com.au/474-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1379", "1", "2018-07-24 11:25:50", "2018-07-24 11:25:50", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Coming Soon</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"27px|0|59px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/murray-bridge-racing-club/\" align=\"center\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"-50px|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]&nbsp;\r\n\r\n<span style=\"font-size: 18px;\">Racing at Gifford Hill - Murray Bridge Racing Club</span>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|50px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/BIs-New-Office-REAR-800x451.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/beyond-ink-office/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Beyond Ink Office</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Duttons.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/duttons-service-centre/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Duttons Service Centre</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|50px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Nairne.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/aldgate-renovation/https://beyondink.alluredigitalmarketing.com.au/kloses-supermarket-woodside/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Klose\'s Supermarket Nairne</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/CAMBRIDGE-WOODSIDE-SUPERMARKET-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/aldgate-renovation/https://beyondink.alluredigitalmarketing.com.au/kloses-supermarket-woodside/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Klose\'s Supermarket Woodside</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|50px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Wolf-Blass.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/battunga-residence/https://beyondink.alluredigitalmarketing.com.au/wolf-blass-gallery-and-museum/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Wolf Blass Gallery and Museum</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Coming Soon", "", "inherit", "closed", "closed", "", "195-revision-v1", "", "", "2018-07-24 11:25:50", "2018-07-24 11:25:50", "", "195", "https://beyondink.alluredigitalmarketing.com.au/195-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1381", "1", "2018-07-24 11:29:37", "2018-07-24 11:29:37", "", "Beyond Ink Office", "", "inherit", "open", "closed", "", "beyond-ink-office-2", "", "", "2018-07-24 11:29:37", "2018-07-24 11:29:37", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Beyond-Ink-Office.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1382", "1", "2018-07-24 11:30:11", "2018-07-24 11:30:11", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Coming Soon</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"27px|0|59px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/murray-bridge-racing-club/\" align=\"center\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"-50px|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]&nbsp;\r\n\r\n<span style=\"font-size: 18px;\">Racing at Gifford Hill - Murray Bridge Racing Club</span>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|50px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Beyond-Ink-Office.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/beyond-ink-office/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/chapmans-meatworks-kloses-supermarket-nairne/\">Beyond Ink Office</a></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Duttons.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/duttons-service-centre/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Duttons Service Centre</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|50px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Nairne.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/chapmans-meatworks-kloses-supermarket-nairne/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/chapmans-meatworks-kloses-supermarket-nairne/\">Klose\'s Supermarket Nairne</a></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/CAMBRIDGE-WOODSIDE-SUPERMARKET-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/aldgate-renovation/https://beyondink.alluredigitalmarketing.com.au/kloses-supermarket-woodside/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Klose\'s Supermarket Woodside</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|50px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Wolf-Blass.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/battunga-residence/https://beyondink.alluredigitalmarketing.com.au/wolf-blass-gallery-and-museum/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\">Wolf Blass Gallery and Museum</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Coming Soon", "", "inherit", "closed", "closed", "", "195-revision-v1", "", "", "2018-07-24 11:30:11", "2018-07-24 11:30:11", "", "195", "https://beyondink.alluredigitalmarketing.com.au/195-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1392", "1", "2018-07-24 11:47:35", "2018-07-24 11:47:35", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Carrickalinga Beach House</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p><strong>Our involvement: Design, Interior Design, Town Planning, Landscape Design</strong></p>\n<p>Builder: <a href=\"https://www.endurobuilders.com.au/about-us/\" target=\"_blank\" rel=\"noopener noreferrer\">Enduro Builders</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1125,1130,1143,1149,1151,1152,1153,1154,1157,1160,1161,1166\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,\" posts_number=\"8\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Carrickalinga Beach House", "", "inherit", "closed", "closed", "", "1119-revision-v1", "", "", "2018-07-24 11:47:35", "2018-07-24 11:47:35", "", "1119", "https://beyondink.alluredigitalmarketing.com.au/1119-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1384", "1", "2018-07-24 11:31:57", "2018-07-24 11:31:57", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Coming Soon</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"27px|0|59px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/murray-bridge-racing-club/\" align=\"center\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"-50px|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p>&nbsp;</p>\n<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/murray-bridge-racing-club/\">Racing at Gifford Hill - Murray Bridge Racing Club</a></span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|50px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Beyond-Ink-Office.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/beyond-ink-office/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/chapmans-meatworks-kloses-supermarket-nairne/\">Beyond Ink Office</a></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Duttons.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/duttons-service-centre/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/duttons-service-centre/\">Duttons Service Centre</a></span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|50px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Nairne.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/chapmans-meatworks-kloses-supermarket-nairne/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/chapmans-meatworks-kloses-supermarket-nairne/\">Klose\'s Supermarket Nairne</a></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/CAMBRIDGE-WOODSIDE-SUPERMARKET-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/aldgate-renovation/https://beyondink.alluredigitalmarketing.com.au/kloses-supermarket-woodside/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/aldgate-renovation/https://beyondink.alluredigitalmarketing.com.au/kloses-supermarket-woodside/\">Klose\'s Supermarket Woodside</a></span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|50px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Wolf-Blass.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/battunga-residence/https://beyondink.alluredigitalmarketing.com.au/wolf-blass-gallery-and-museum/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/battunga-residence/https://beyondink.alluredigitalmarketing.com.au/wolf-blass-gallery-and-museum/\">Wolf Blass Gallery and Museum</a></span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Coming Soon", "", "inherit", "closed", "closed", "", "195-revision-v1", "", "", "2018-07-24 11:31:57", "2018-07-24 11:31:57", "", "195", "https://beyondink.alluredigitalmarketing.com.au/195-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1406", "1", "2018-07-24 12:04:51", "2018-07-24 12:04:51", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" parallax=\"on\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" parallax_1=\"on\" parallax_2=\"on\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\" parallax=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"on\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/contact/\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]We\'re a boutique design and construction company - big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"on\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|14px|0px\"][et_pb_row custom_padding=\"46px|0px|72px|0px\" custom_margin=\"-45px|||\" _builder_version=\"3.0.106\" custom_margin_phone=\"-25px|||\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"25px|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2><strong>Commercial Projects. New Homes. Additions.</strong></h2>\r\n<h3><span style=\"color: #000000;\"><strong>Insightful design. Exemplary construction.</strong></span></h3>\r\nHaving a talented team of designers and project managers enables us to adopt an holistic approach when creating and delivering a comprehensive commercial and residential package that meets and exceed your needs.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#535353\" admin_label=\"CTA Section\" _builder_version=\"3.0.106\" custom_padding=\"21px||0|\"][et_pb_row custom_padding=\"55px||25px|\" admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<span style=\"color: #ffffff;\">• Interior Design</span>\r\n<span style=\"color: #ffffff;\"> • Landcape Design</span>\r\n\r\n<span style=\"color: #ffffff;\">We\'re a commercial and residential design and construction company.</span>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<span style=\"color: #ffffff;\">• Commercial</span>\r\n<span style=\"color: #ffffff;\"> • Residential</span>\r\n\r\n<span style=\"color: #ffffff;\">We\'re passionate about innovation to create the best possible space.</span>\r\n\r\n<span style=\"color: #ffffff;\"> </span>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<span style=\"color: #ffffff;\">• Town Planning</span>\r\n<span style=\"color: #ffffff;\"> • Cost Control</span>\r\n\r\n<span style=\"color: #ffffff;\">We\'re committed to quality and value for money, delivering on time and on budget.</span>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"41px||0|\"][et_pb_row custom_padding=\"27px|0px|62px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Barker-Plaza-Entrance-800x534.jpg\" show_in_lightbox=\"on\" align=\"center\" _builder_version=\"3.0.106\" custom_margin=\"||25px|\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-13-of-47-800x535.jpg\" show_in_lightbox=\"on\" align=\"center\" _builder_version=\"3.0.106\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/169__MCOLES__MKC6097-1024x684.jpg\" show_in_lightbox=\"on\" align=\"center\" _builder_version=\"3.0.106\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#535353\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0|0px|23px|0px\" custom_margin=\"||50px|\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/The-Haus-Extension-1-23-08-2017-800x601.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"0px|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]<span style=\"color: #ffffff;\">Our portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, and the new Wolf Blass Gallery and Museum.</span>\r[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_margin=\"-50px||-50px|\" custom_padding=\"0|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]Sign up to keep up to date with what\'s happening at Beyond Ink.\r[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"] \r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-07-24 12:04:51", "2018-07-24 12:04:51", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1387", "1", "2018-07-24 11:38:46", "2018-07-24 11:38:46", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"194deg\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705-e1525939024788.jpg\" custom_padding=\"9.8%|0px|123px|0px\"][et_pb_row custom_padding=\"0|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Commercial Projects</h1>\n<span style=\"color: #ffffff;\">We specialise in major regional developments - from design and construction to entire management of your project.</span> [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"50px|0px|50px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Lane-Winery.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-lane-vineyard/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/battunga-residence/https://beyondink.alluredigitalmarketing.com.au/wolf-blass-gallery-and-museum/\">The Lane Winery</a></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Barker-Plaza-Entrance-800x534.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/barker-plaza/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/barker-plaza/\">Barker Plaza Shopping Centre</a></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/3__MCOLES__MKC5307-1024x684.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-haus-cafebarkitchen/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/the-haus-cafebarkitchen/\">The Haus Hahndorf</a></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/The-Haus-Studio-Apartments.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-manna-apartments-2/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/the-manna-apartments-2/\">The Haus Studio Apartments</a></span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"||50px|\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/K1-Winery-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/k1-winery/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/k1-winery/\">K1 Winery</a></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2018-The-Manna-Of-Hahndorf-Indulgence-Spa-Suites-1-800x534.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/the-manna-motel-of-hahndorf/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/k1-winery/\">The Manna Motel of Hahndorf</a></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Inavogue-Showroom-2-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/inavogue-showroom/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/k1-winery/\">Inavogue Showroom</a></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Pulteney-Plaza-Apartments-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/pulteney-plaza-adelaide/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/pulteney-plaza-adelaide/\">Pulteney Plaza Apartments</a></span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|46px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Rivercorp-Monarto-Apple-Processing-Plant.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/rivercorp-monarto-apple-processing-facility/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/rivercorp-monarto-apple-processing-facility/\">Rivercorp Monarto Apple Processing Facility</a></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Elders-Strathalbyn-2.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/elders-strathalbyn/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/elders-strathalbyn/\">Elders Strathalbyn</a></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0|59px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"COMING SOON\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/coming-soon/\" button_text=\"Discover our Work in Progress\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"||||||||\" header_font_size=\"44px\" header_text_shadow_style=\"preset3\" body_font=\"||||||||\" max_width_tablet=\"74%\" max_width_phone=\"91%\" max_width_last_edited=\"on|phone\" custom_button=\"on\" button_text_size=\"17px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_color=\"#ffffff\" button_font=\"||||||||\" button_use_icon=\"off\" button_bg_color_hover=\"rgba(255,255,255,0.05)\" box_shadow_style_button=\"preset3\" box_shadow_style=\"preset3\"][/et_pb_cta][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/coming-soon/\" align=\"center\" _builder_version=\"3.0.106\" max_width=\"60%\" custom_padding=\"30px||0px|\" custom_margin=\"|||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "Commercial", "", "inherit", "closed", "closed", "", "175-revision-v1", "", "", "2018-07-24 11:38:46", "2018-07-24 11:38:46", "", "175", "https://beyondink.alluredigitalmarketing.com.au/175-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1389", "1", "2018-07-24 11:42:13", "2018-07-24 11:42:13", "[et_pb_section fb_built=\"1\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"194deg\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/IMG_6211-1280x853.jpg\" custom_padding=\"10%|0px|123px|0px\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1143px\" custom_padding=\"0|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Residential Projects</h1>\r\n<span style=\"color: #ffffff;\">Designing and building beautiful homes in the Adelaide Hills area since 2006.</span>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"41px|0px|50px|0px\" custom_margin=\"|||\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Bell-Crt-4-1.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/adelaide-hills-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"-2px|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/adelaide-hills-residence/\">Adelaide Hills Residence </a></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/aldgate-renovation/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/aldgate-renovation/\">Aldgate Renovation </a></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Battunga-Residence.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/battunga-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/battunga-residence/\">Battunga Residence</a></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6211-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/bridgewater-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/bridgewater-residence/\">Bridgewater Residence</a></span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"1px|0px|50px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/6.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/bridgewater-rammed-earth-renovation/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/bridgewater-rammed-earth-renovation/\">Bridgewater Rammed Earth Renovation</a></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/The-Latch-Atkinson-Rd-Crafers-West-5-800x532.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/crafers-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/crafers-residence/\">Crafers Residence</a></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Echunga-Residence.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/echunga-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/echunga-residence/\">Echunga Residence</a></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Jupiter-Creek-Residence.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/jupiter-creek-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/jupiter-creek-residence/\">Jupiter Creek Residence</a></span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|50px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence-6.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/kensington-gardens/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/kensington-gardens/\">Kensington Gardens Residence</a></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/IMG_0623-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/littlehampton-renovation-additions/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><a href=\"https://beyondink.alluredigitalmarketing.com.au/littlehampton-renovation-additions/\"><span style=\"font-size: 18px;\">Littlehampton Renovation and Additions</span><span style=\"font-size: 18px;\"> </span></a></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/14-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/totness-residence/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/totness-residence/\">Totness Residence</a></span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Residential", "", "inherit", "closed", "closed", "", "152-revision-v1", "", "", "2018-07-24 11:42:13", "2018-07-24 11:42:13", "", "152", "https://beyondink.alluredigitalmarketing.com.au/152-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1402", "1", "2018-07-24 11:56:08", "2018-07-24 11:56:08", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|40px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Mount Barker Residence</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p><strong>Our Involvement: Design, Town Planning</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"326,327,328,329,330,331,332,333,334,335,336,337\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Adelaide Hills Residence", "", "inherit", "closed", "closed", "", "323-revision-v1", "", "", "2018-07-24 11:56:08", "2018-07-24 11:56:08", "", "323", "https://beyondink.alluredigitalmarketing.com.au/323-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1409", "1", "2018-07-24 12:09:49", "2018-07-24 12:09:49", "[et_pb_section fb_built=\"1\" background_color=\"#ededed\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" background_color_gradient_overlays_image=\"on\" parallax=\"on\" custom_padding=\"0px||0px|\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"3\" custom_padding=\"|0px|0|0px\" custom_margin=\"-50px|||\" make_equal=\"on\" bg_img_2=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" padding_top_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_top_2=\"10%\" parallax_1=\"on\" parallax_2=\"on\" padding_1_tablet=\"|10%||\" padding_1_last_edited=\"on|tablet\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\" parallax=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|10%||\" padding_last_edited=\"on|tablet\" padding_bottom=\"10%\" padding_left=\"10%\" padding_top=\"10%\" parallax=\"on\" parallax_method=\"on\"][et_pb_cta title=\"Design Innovation. Building Excellence.\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/contact/\" button_text=\"Contact Us\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Heading, Subheading & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h1\" header_font=\"Muli|700|||||||\" header_text_align=\"left\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_line_height=\"1.8em\" max_width=\"540px\" module_alignment=\"right\" custom_margin=\"|||\" custom_margin_tablet=\"3vw||3vw|\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\" animation_style=\"fade\" locked=\"off\"]We\'re a boutique design and construction company - big enough to deliver on large projects, but nimple enough to offer a highly personalised and efficient service.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"10%\" bg_img=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-1280x705.jpg\" parallax=\"on\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|14px|0px\"][et_pb_row custom_padding=\"46px|0px|72px|0px\" custom_margin=\"-45px|||\" _builder_version=\"3.0.106\" custom_margin_phone=\"-25px|||\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|desktop\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"25px|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" locked=\"off\"]<h2><strong>Commercial Projects. New Homes. Additions.</strong></h2>\r\n<h3><span style=\"color: #000000;\"><strong>Insightful design. Exemplary construction.</strong></span></h3>\r\nHaving a talented team of designers and project managers enables us to adopt an holistic approach when creating and delivering a comprehensive commercial and residential package that meets and exceed your needs.\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#535353\" admin_label=\"CTA Section\" _builder_version=\"3.0.106\" custom_padding=\"21px||0|\"][et_pb_row custom_padding=\"55px||25px|\" admin_label=\"Process Row\" _builder_version=\"3.0.106\" module_alignment=\"center\" custom_margin_phone=\"|||\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Design\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#ffffff\" use_circle=\"on\" use_icon_font_size=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<span style=\"color: #ffffff;\">• Interior Design</span>\r\n<span style=\"color: #ffffff;\"> • Landcape Design</span>\r\n\r\n<span style=\"color: #ffffff;\">We\'re a commercial and residential design and construction company.</span>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Architecture\" use_icon=\"on\" font_icon=\"%%270%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<span style=\"color: #ffffff;\">• Commercial</span>\r\n<span style=\"color: #ffffff;\"> • Residential</span>\r\n\r\n<span style=\"color: #ffffff;\">We\'re passionate about innovation to create the best possible space.</span>\r\n\r\n<span style=\"color: #ffffff;\"> </span>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Project Management\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#ffffff\" use_circle=\"on\" admin_label=\"Process\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_text_align=\"center\" header_font_size=\"20px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"center\" body_font_size=\"16px\" body_line_height=\"1.8em\" border_width_all_image=\"4px\" border_color_all_image=\"#f4583f\"]<span style=\"color: #ffffff;\">• Town Planning</span>\r\n<span style=\"color: #ffffff;\"> • Cost Control</span>\r\n\r\n<span style=\"color: #ffffff;\">We\'re committed to quality and value for money, delivering on time and on budget.</span>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"CTA Section\" _builder_version=\"3.0.92\" custom_padding=\"41px||0|\"][et_pb_row custom_padding=\"27px|0px|62px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Barker-Plaza-Entrance-800x534.jpg\" show_in_lightbox=\"on\" align=\"center\" _builder_version=\"3.0.106\" custom_margin=\"||25px|\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-13-of-47-800x535.jpg\" show_in_lightbox=\"on\" align=\"center\" _builder_version=\"3.0.106\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/169__MCOLES__MKC6097-1024x684.jpg\" show_in_lightbox=\"on\" align=\"center\" _builder_version=\"3.0.106\"] \r[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#535353\" admin_label=\"Our Works CTA Section\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0|0px|23px|0px\" custom_margin=\"||50px|\" padding_top_2=\"50px\" padding_right_2=\"60px\" padding_2_tablet=\"|||60px\" padding_2_last_edited=\"on|desktop\" admin_label=\"CTA Row\" _builder_version=\"3.0.106\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/The-Haus-Extension-1-23-08-2017-800x601.jpg\" show_bottom_space=\"off\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"] \r[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_tablet=\"|||60px\" padding_last_edited=\"on|desktop\" padding_right=\"60px\" padding_top=\"50px\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Our Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/portfolio/\" button_text=\"View Projects\" use_background_color=\"off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_font_size_phone=\"40px\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_text_align=\"left\" body_font_size=\"18px\" body_text_color=\"rgba(255,255,255,0.55)\" body_line_height=\"1.8em\" max_width=\"600px\" max_width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"50|||\" custom_margin_tablet=\"|||\" custom_margin_phone=\"||50px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||\" custom_padding_tablet=\"|||\" custom_padding_phone=\"|||\" custom_padding_last_edited=\"off|desktop\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"10px\" button_border_color=\"#ffffff\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"0px\" box_shadow_style_button=\"preset3\"]<p><span style=\"color: #ffffff;\">Our commercial portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, the new Wolf Blass Gallery and Museum, the redesign of the Mount Barker Racing Club at Gifford Hill, and more.</span></p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_margin=\"-50px||-50px|\" custom_padding=\"0|0px|0px|0px\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscription Section\" _builder_version=\"3.0.106\" background_image=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/04/Murray-Bridge-Racing-Club-Website-Footer-3.jpg\" background_position=\"bottom_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" admin_label=\"Subscription Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" first_name_field=\"off\" last_name_field=\"off\" title=\"Subscribe to Our Newsletter\" use_background_color=\"off\" form_field_background_color=\"#ffffff\" disabled_on=\"off|off|off\" _builder_version=\"3.0.106\" header_font=\"Muli|700|||||||\" header_font_size=\"50px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" result_message_font=\"Muli|700|||||||\" result_message_font_size=\"16px\" border_radii_fields=\"on||||\" custom_margin=\"|||\" custom_padding=\"30px||0px|\" custom_button=\"on\" button_border_color=\"#9dd00f\" button_font=\"||||||||\" button_text_color_hover=\"#9dd00f\" button_bg_color_hover=\"#ffffff\" box_shadow_style_button=\"preset3\" use_focus_border_color=\"off\"]Sign up to keep up to date with what\'s happening at Beyond Ink.\r[/et_pb_signup][et_pb_text admin_label=\"Tip\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_text_color=\"#F4583F\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_text_color=\"#1a1a1a\" header_line_height=\"1.4em\" header_2_font=\"Muli|700|||||||\" header_2_font_size=\"50px\" header_2_text_color=\"#1a1a1a\" header_2_line_height=\"1.4em\" text_orientation=\"right\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"-20px||10px|\" custom_padding_last_edited=\"off|desktop\"] \r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Home", "", "inherit", "closed", "closed", "", "6-revision-v1", "", "", "2018-07-24 12:09:49", "2018-07-24 12:09:49", "", "6", "https://beyondink.alluredigitalmarketing.com.au/6-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1405", "1", "2018-07-24 12:04:07", "2018-07-24 12:04:07", "", "The Haus Conference Centre", "", "inherit", "open", "closed", "", "the-haus-extension-1-23-08-2017-800x601", "", "", "2018-07-24 12:04:36", "2018-07-24 12:04:36", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/The-Haus-Extension-1-23-08-2017-800x601.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1414", "1", "2018-07-24 12:20:22", "2018-07-24 12:20:22", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#cccccc\" background_color_gradient_end=\"#9dd00f\" background_color_gradient_direction=\"5deg\" background_color_gradient_end_position=\"64%\" custom_padding=\"2.2%|0px|41px|0px\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1983px\" custom_padding=\"0|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Our Projects</h1>\n<span style=\"color: #ffffff;\">From major regional developments, to grand home designs - you can feel at ease with our beginning-to-end design, construction, and project management expertise.</span>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ffffff\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_position=\"top_center\" custom_padding=\"0|0px|26px|0px\"][et_pb_row custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.106\"][/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"51px|0px|27px|0px\" make_equal=\"on\" background_color_2=\"#f3f3f3\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Front-Entry-Portal-Dulux-Gunmetal-Kinetic-2.jpg\" show_bottom_space=\"off\" _builder_version=\"3.0.106\" custom_padding=\"|||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Commercial Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/commercial/\" button_text=\"Discover Commercial Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]<p>Our commercial portfolio includes landmark destinations like The Lane Vineyard, The Manna Hotel, The Haus Restaurant, the new Wolf Blass Gallery and Museum, and the redesign of the Mount Barker Racing Club at Gifford Hill.</p>[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#f3f3f3\" background_color_2=\"#f3f3f3\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Residential Projects\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/residential/\" button_text=\"Discover Residential Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]As residential builders in Adelaide, we\'ve designed and built dozens of beautiful homes in South Australia. With our expertise and exemplary construction experience, we can build you a dream home beyond your expectations.[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/WEB_70_Hogan_Dusk__26_of_35_-800x534.jpg\" _builder_version=\"3.0.106\" custom_margin=\"|||\" show_bottom_space=\"off\" custom_padding=\"|||\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_2=\"#f3f3f3\" padding_top_2=\"60px\" padding_right_2=\"60px\" padding_bottom_2=\"60px\" padding_left_2=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/3__MCOLES__MKC5307-1024x684.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Renovations\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/restorations/\" button_text=\"Discover Renovation Projects\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]No renovation is too difficult for our team. We can completely transform your existing home or site to your ideal specifications, whilst ensuring your project is on time and on budget.[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" background_color_1=\"#f3f3f3\" padding_top_1=\"60px\" padding_right_1=\"60px\" padding_bottom_1=\"60px\" padding_left_1=\"60px\" admin_label=\"Case Study Row\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"60px\" padding_left=\"60px\" padding_right=\"60px\" padding_top=\"60px\" background_color=\"#f3f3f3\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Coming Soon\" button_url=\"https://beyondink.alluredigitalmarketing.com.au/coming-soon/\" button_text=\"Discover Work In Progress\" use_background_color=\"off\" background_layout=\"light\" admin_label=\"Title Paragraph & CTA Button\" _builder_version=\"3.0.106\" header_level=\"h3\" header_font=\"Muli|700|||||||\" header_font_size=\"26px\" header_line_height=\"1.4em\" body_font=\"Muli|600|||||||\" body_font_size=\"16px\" body_line_height=\"1.8em\" text_orientation=\"left\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#9dd00f\" button_border_width=\"10px\" button_border_color=\"#9dd00f\" button_border_radius=\"0px\" button_font=\"Muli|700|||||||\" button_border_radius_hover=\"0px\"]Our team is always working on a number of commercial and residential projects in South Australia and beyond.[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/North-East-Corner-Dulux-Gunmetal-Kinetic-Sm.jpg\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "Projects", "", "inherit", "closed", "closed", "", "120-revision-v1", "", "", "2018-07-24 12:20:22", "2018-07-24 12:20:22", "", "120", "https://beyondink.alluredigitalmarketing.com.au/120-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1418", "1", "2018-07-24 12:23:19", "2018-07-24 12:23:19", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Barker Plaza Shopping Centre</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The Barker Plaza Shopping Centre had started to become tired and dated. With Aldi Supermarkets moving in to the centre, the property owner engaged us to give the whole shopping centre a revamp.</p>\n<p><strong>Our Involvement: Design, Project Management, Interior Design, Town Planning, Cost Control</strong></p>\n<p>Builder: <a href=\"http://bellabuildanddesign.com.au/\" target=\"_blank\" rel=\"noopener noreferrer\">Bella Build &amp; Design</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"522,523,524,525\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Barker Plaza Shopping Centre", "", "inherit", "closed", "closed", "", "519-revision-v1", "", "", "2018-07-24 12:23:19", "2018-07-24 12:23:19", "", "519", "https://beyondink.alluredigitalmarketing.com.au/519-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1422", "1", "2018-07-24 12:25:52", "2018-07-24 12:25:52", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Rivercorp Monarto Apple Processing Facility</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#F1F1F1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1500px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>This project was constructed to be the largest apple processing facility in the Southern hemisphere - located in Monarto, South Australia.</p>\n<p><strong>Our Involvement: Design, Project Management, Cost Control, Town Planning</strong></p>\n<p>Builder: <a href=\"http://www.palumbo.com.au/about/\" target=\"_blank\" rel=\"noopener noreferrer\">Palumbo</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"631,632,633,634,635,636,637\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Rivercorp Monarto Apple Processing Facility", "", "inherit", "closed", "closed", "", "576-revision-v1", "", "", "2018-07-24 12:25:52", "2018-07-24 12:25:52", "", "576", "https://beyondink.alluredigitalmarketing.com.au/576-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1424", "1", "2018-07-24 12:27:30", "2018-07-24 12:27:30", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>The Haus Hahndorf</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The Haus Restaurant, on the main street of Hahndorf, is owned and operated by the Duffield family. We\'ve had the pleasure of working with the Duffield\'s on various projects over the past 25 years - including various hospitality and accommodation venues; and now the refurbishment of those same venues.</p>\n<p><strong>Our Involvement: Project Management, Cost Control, Town Planning</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The Haus hosts a lot of conferences and functions, as well as provides catering off-site. And they\'ve <span style=\"font-size: 18px;\">just been awarded Venue Caterer of the Year at the 2018 Savour Australia Restaurant and Catering Awards.</span></p>\n<p>Hint: when you visit the restaurant make sure you check out the murals which have been stencilled on the walls - they tell a story of the history of Hahndorf. They show the ships arriving, residents tending to crops, a <a href=\"../the-manna-motel-of-hahndorf/\">pear tree</a>, and more.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "The Haus Cafe+Bar+Kitchen", "", "inherit", "closed", "closed", "", "600-revision-v1", "", "", "2018-07-24 12:27:30", "2018-07-24 12:27:30", "", "600", "https://beyondink.alluredigitalmarketing.com.au/600-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1426", "1", "2018-07-24 12:28:08", "2018-07-24 12:28:08", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>The Haus Hahndorf</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading &amp; Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n\r\nThe Haus Restaurant, on the main street of Hahndorf, is owned and operated by the Duffield family. We\'ve had the pleasure of working with the Duffield\'s on various projects over the past 25 years - including various hospitality and accommodation venues; and now the refurbishment of those same venues.\r\n\r\n<strong>Our Involvement: Project Management, Cost Control, Town Planning</strong>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading &amp; Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n\r\nThe Haus hosts a lot of conferences and functions, as well as provides catering off-site. And they\'ve <span style=\"font-size: 18px;\">just been awarded Venue Caterer of the Year at the 2018 Savour Australia Restaurant and Catering Awards.</span>\r\n\r\nHint: when you visit the restaurant make sure you check out the murals which have been stencilled on the walls - they tell a story of the history of Hahndorf. They show the ships arriving, residents tending to crops, a <a href=\"../the-manna-motel-of-hahndorf/\">pear tree</a>, and more.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "The Haus Cafe+Bar+Kitchen", "", "inherit", "closed", "closed", "", "600-revision-v1", "", "", "2018-07-24 12:28:08", "2018-07-24 12:28:08", "", "600", "https://beyondink.alluredigitalmarketing.com.au/600-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1427", "1", "2018-07-24 12:28:26", "2018-07-24 12:28:26", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>The Haus Studio Apartments</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The Haus Studio Apartments are a part of the Hahndorf Accommodation Group - owned by the Duffield family, whom we\'ve worked closely with over the past 25 years.</p>\n<p><strong>Our Involvement: Design, Project Management, Cost Control</strong></p>\n<p>Builder: Scholz Constructions</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1275,1276,1277,1280,1281,1282,1283,1284,1286,1279,1287,1278\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>Interesting fact: there is a historic pear tree on the grounds (one of the village\'s original trees). The early settlers of Hahndorf would plant a pear tree near their wells, as they believed it would make the water sweeter. This story forms part of the mural on the internal walls of the <a href=\"../the-haus-cafebarkitchen/\">Haus Restaurant</a>. </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "The Haus Studio Apartments", "", "inherit", "closed", "closed", "", "613-revision-v1", "", "", "2018-07-24 12:28:26", "2018-07-24 12:28:26", "", "613", "https://beyondink.alluredigitalmarketing.com.au/613-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1428", "1", "2018-07-24 12:29:16", "2018-07-24 12:29:16", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>The Haus Studio Apartments</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The Haus Studio Apartments are a part of the <a href=\"http://www.hahndorfaccommodation.com.au/\" target=\"_blank\" rel=\"noopener noreferrer\">Hahndorf Accommodation Group</a> - owned by the Duffield family, whom we\'ve worked closely with over the past 25 years.</p>\n<p><strong>Our Involvement: Design, Project Management, Cost Control</strong></p>\n<p>Builder: Scholz Constructions</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1275,1276,1277,1280,1281,1282,1283,1284,1286,1279,1287,1278\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>Interesting fact: there is a historic pear tree on the grounds (one of the village\'s original trees). The early settlers of Hahndorf would plant a pear tree near their wells, as they believed it would make the water sweeter. This story forms part of the mural on the internal walls of the <a href=\"../the-haus-cafebarkitchen/\">Haus Restaurant</a>. </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "The Haus Studio Apartments", "", "inherit", "closed", "closed", "", "613-revision-v1", "", "", "2018-07-24 12:29:16", "2018-07-24 12:29:16", "", "613", "https://beyondink.alluredigitalmarketing.com.au/613-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1432", "1", "2018-07-24 12:32:21", "2018-07-24 12:32:21", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|39px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Bridgewater Rammed Earth Renovation</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"30px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"392,393,394,395,396,397,398,399,400\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,,\" posts_number=\"8\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Bridgewater Rammed Earth Renovation", "", "inherit", "closed", "closed", "", "389-revision-v1", "", "", "2018-07-24 12:32:21", "2018-07-24 12:32:21", "", "389", "https://beyondink.alluredigitalmarketing.com.au/389-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1430", "1", "2018-07-24 12:30:46", "2018-07-24 12:30:46", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>The Lane Vineyard</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>We\'ve been involved with the beautiful <a href=\"https://www.thelane.com.au/\" target=\"_blank\" rel=\"noopener noreferrer\">Lane Vineyard</a> since the beginning - having designed it initially; and then since, we\'ve been involved in a number of improvements/additions that\'ve been made.</p>\n<p><strong>Our Involvement: Design, Town Planning, Project Management, Cost Control</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"2px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"585,587,588,590,591,592,595,593\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The Lane Vineyard site includes the winery, cellar door and restaurant.</p>\n<p>The Lane hosts many prominent events and functions, and is a highly desired and popular wedding venue.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "The Lane Vineyard", "", "inherit", "closed", "closed", "", "580-revision-v1", "", "", "2018-07-24 12:30:46", "2018-07-24 12:30:46", "", "580", "https://beyondink.alluredigitalmarketing.com.au/580-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1433", "1", "2018-07-24 12:32:43", "2018-07-24 12:32:43", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Bridgewater Residence</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p><strong>Our Involvement: Design</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"452,453,454,455,456,457,458,459\" gallery_orderby=\"rand\" gallery_captions=\",,,,,,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Bridgewater Residence", "", "inherit", "closed", "closed", "", "448-revision-v1", "", "", "2018-07-24 12:32:43", "2018-07-24 12:32:43", "", "448", "https://beyondink.alluredigitalmarketing.com.au/448-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1434", "1", "2018-07-24 12:33:55", "2018-07-24 12:33:55", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|34px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Jupiter Creek Country Residence</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p><strong>Our Involvement: Design, Town Planning</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"381,382,383,384,385,386\" gallery_orderby=\"rand\" gallery_captions=\",,,,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Jupiter Creek Residence", "", "inherit", "closed", "closed", "", "378-revision-v1", "", "", "2018-07-24 12:33:55", "2018-07-24 12:33:55", "", "378", "https://beyondink.alluredigitalmarketing.com.au/378-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1435", "1", "2018-07-24 12:34:04", "2018-07-24 12:34:04", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|34px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Jupiter Creek Country Residence</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row make_fullwidth=\"on\" background_color=\"#f1f1f1\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p><strong>Our Involvement: Design, Town Planning</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"381,382,383,384,385,386\" gallery_orderby=\"rand\" gallery_captions=\",,,,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Jupiter Creek Residence", "", "inherit", "closed", "closed", "", "378-revision-v1", "", "", "2018-07-24 12:34:04", "2018-07-24 12:34:04", "", "378", "https://beyondink.alluredigitalmarketing.com.au/378-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1437", "1", "2018-07-24 12:36:12", "2018-07-24 12:36:12", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Beyond Ink Office</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|54px|0px\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" make_fullwidth=\"on\" module_alignment=\"center\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>We’ve outgrown our little cottage (our original Beyond Ink office), and have had the chance to be our own client...so, we\'re designing a new studio office space in Hahndorf for ourselves.</p>\n<p><strong>Our Involvement: Design, Town Planning, Project Management, Interior Design, Cost Control</strong></p>\n<p>Builder: Matt Rohde - <a href=\"http://kingsgatehomes.com.au/\" target=\"_blank\" rel=\"noopener noreferrer\">Kingsgate Homes</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"2px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1366,1367\" gallery_orderby=\"rand\" gallery_captions=\",\" posts_number=\"2\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" module_class=\"centerGallery \" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|54px|0px\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The new Beyond Ink office will include a community gallery - we want the space to foster our creativity and support that of the community.</p>\n<p>The community gallery will be available to the public, for exhibitions at no cost - to Adelaide Hills emerging artists.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Beyond Ink Office", "", "inherit", "closed", "closed", "", "1362-revision-v1", "", "", "2018-07-24 12:36:12", "2018-07-24 12:36:12", "", "1362", "https://beyondink.alluredigitalmarketing.com.au/1362-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1438", "1", "2018-07-24 12:36:38", "2018-07-24 12:36:38", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Duttons Service Centre</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|54px|0px\"][et_pb_row custom_padding=\"27px|0px|27px|0px\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>A new vehicle service centre currently under construction for Dutton Motors, who specialise in Volkswagen, Subaru and Holden. Duttons already have sales premises in Totness and Murray Bridge, and this new site is expected to be completed in late 2018.</p>\n<p><strong> Our Involvement: Design, Town Planning, Project Management, Cost Control, Interior Design</strong></p>\n<p>Builder: <a href=\"http://www.gehughes.com.au/\" target=\"_blank\" rel=\"noopener noreferrer\">GE Hughes Constructions</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1215,1213\" gallery_orderby=\"rand\" gallery_captions=\",\" posts_number=\"2\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" module_class=\"centerGallery\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Duttons Service Centre", "", "inherit", "closed", "closed", "", "1214-revision-v1", "", "", "2018-07-24 12:36:38", "2018-07-24 12:36:38", "", "1214", "https://beyondink.alluredigitalmarketing.com.au/1214-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1441", "1", "2018-07-24 12:42:15", "2018-07-24 12:42:15", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Klose’s Supermarket Woodside</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The existing Klose’s Supermarket in Woodside had become small and outdated, so we were tasked with designing a more appropriate facility. Just down the road - also in Woodside - the new premises will include a supermarket and bottle shop. It has Planning Consent from Council, and we\'re currently working through the remaining approvals. The new Klose\'s Supermarket is expected to open in 2019.</p>\n<p><strong>Our Involvement: Design, Town Planning, Landscape Design, Project Management, Cost Control</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1231,1230,1229,1228\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p><span style=\"font-size: 18px;\">Klose’s Supermarkets are owned and operated by Adelaide Hills family, the Klose\'s, who have been operating supermarkets in the area since 1902.</span></p>\n<p><span style=\"font-size: 18px;\">The Klose family have a strong community focus, and this was recognised when Barry Klose was awarded an Order of Australia Medal in 2015 - for service to the community. The superamarkets have a strong focus <span>on sourcing local products and produce.</span></span></p>\n<p><span style=\"font-size: 18px;\">The Klose\'s have supermarkets in Lobethal, Woodside, Balhannah, Littlehampton (which we designed), and Birdwood; with another opening in Nairne (which we are also designing). This size makes them a </span><span style=\"font-size: 18px;\">major employer in the Adelaide Hills – currently employing 240 staff.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Klose’s Supermarket Woodside", "", "inherit", "closed", "closed", "", "1223-revision-v1", "", "", "2018-07-24 12:42:15", "2018-07-24 12:42:15", "", "1223", "https://beyondink.alluredigitalmarketing.com.au/1223-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1440", "1", "2018-07-24 12:41:28", "2018-07-24 12:41:28", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1200px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1><span>Former Chapman’s Meatworks Redevelopment & Klose’s Supermarket Nairne </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>Set to open in 2019.</p>\n<p><strong>Our Involvement: Design, Town Planning, Landscape Design</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Nairne-Supermarket-Perspective-3-800x347.jpg\" align=\"center\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/IMG_4542-800x178.jpg\" align=\"center\" _builder_version=\"3.0.106\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"16px|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1352,1353,1354,1355\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>The site has is quite a <a href=\"https://www.weekendnotes.com/disused-chapmans-smallgoods-factory/\" target=\"_blank\" rel=\"noopener noreferrer\">story</a>! Stage 1 of the development is the Klose’s Supermarket, with some specialty shops and a café. A large portion of the buildings will be demolished to make way for stage 1. Stage 2 is intended to be within the remaining buildings, but they are proving difficult to demolish. Therefore, the plan is still being set for the next stage.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Former Chapman’s Meatworks Redevelopment & Klose’s Supermarket Nairne", "", "inherit", "closed", "closed", "", "1347-revision-v1", "", "", "2018-07-24 12:41:28", "2018-07-24 12:41:28", "", "1347", "https://beyondink.alluredigitalmarketing.com.au/1347-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1442", "1", "2018-07-24 12:42:54", "2018-07-24 12:42:54", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Racing at Gifford Hill - Murray Bridge Racing Club</h1>\n<p><span style=\"color: #ffffff;\"></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"Our projects range from major regional developments, to grand home designs. You can feel at ease with our beginning-to-end design, construction, and project management expertise.\" _builder_version=\"3.0.106\" custom_padding=\"30px|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>We\'re proud to be responsible for the redesign and project management of the new $20 million state-of-the-art Murray Bridge Racing Club at Gifford Hill.</p>\n<p><strong>Our Involvement: Redesign of Project, Interior Design, Cost Control, Project Management </strong></p>\n<p>Builder: <a href=\"https://marshallbrougham.com.au\" target=\"_blank\" rel=\"noopener noreferrer\">Marshall &amp; Brougham</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/North-East-Corner-Dulux-Gunmetal-Kinetic-800x254.jpg\" align=\"center\" _builder_version=\"3.0.106\" custom_margin=\"25px|||\"][/et_pb_image][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" align=\"center\" _builder_version=\"3.0.106\" custom_margin=\"||25px|\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>Set to open early 2019, this world-class racetrack development - with function centre, food and beverage outlets, and <g class=\"gr_ gr_5 gr-alert gr_spell gr_inline_cards gr_run_anim ContextualSpelling ins-del multiReplace\" id=\"5\" data-gr-id=\"5\">raceday</g> facilities - is located just an hour\'s drive from Adelaide.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider _builder_version=\"3.0.106\"][/et_pb_divider][et_pb_gallery gallery_ids=\"144,200,726,727\" gallery_orderby=\"rand\" gallery_captions=\",,,\" posts_number=\"12\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\" custom_margin=\"25px|||\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Racing at Gifford Hill - Murray Bridge Racing Club", "", "inherit", "closed", "closed", "", "718-revision-v1", "", "", "2018-07-24 12:42:54", "2018-07-24 12:42:54", "", "718", "https://beyondink.alluredigitalmarketing.com.au/718-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1443", "1", "2018-07-24 12:43:36", "2018-07-24 12:43:36", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Wolf Blass Gallery and Museum</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>Donated by Wolf and Shirley Blass to the Wolf Blass Foundation, this property has become the new Wolf Blass Gallery and Museum - a celebration of the history of winemaking and Wolf Blass\'s life.</p>\n<p><strong>Our Involvement: Design, Project Management, Cost Control, Town Planning, Interior Design</strong></p>\n<p>Builder: Scholz Constructions</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1206,1207,1208,1209,1210\" gallery_orderby=\"rand\" gallery_captions=\",,,,\" posts_number=\"4\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\"][et_pb_row custom_padding=\"|||\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>Expected to open in September 2018, the Wolf Blass Gallery and Museum building was formerly a bank - with a ruin at the back of the property. This ruin was, in fact, an old <g class=\"gr_ gr_10 gr-alert gr_spell gr_inline_cards gr_run_anim ContextualSpelling ins-del\" id=\"10\" data-gr-id=\"10\">school house</g> from a book written by Anni Luur Fox.</p>\n<p>The schoolhouse was in bad shape (as it\'s 175+ years old), but it has now been extensively restored, and the new Museum and Gallery building built around it.</p>\n<p>The existing schoolhouse is now a feature inside the gallery and <g class=\"gr_ gr_14 gr-alert gr_gramm gr_inline_cards gr_run_anim Punctuation only-del replaceWithoutSep gr-progress\" id=\"14\" data-gr-id=\"14\">museum,</g> and acts as a cooperage display.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Wolf Blass Gallery and Museum", "", "inherit", "closed", "closed", "", "1198-revision-v1", "", "", "2018-07-24 12:43:36", "2018-07-24 12:43:36", "", "1198", "https://beyondink.alluredigitalmarketing.com.au/1198-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1444", "1", "2018-07-24 12:44:50", "2018-07-24 12:44:50", "", "Beyond Ink", "", "inherit", "open", "closed", "", "beyond-ink-logo-rectangle", "", "", "2018-07-24 12:44:55", "2018-07-24 12:44:55", "", "0", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Beyond-Ink-Logo-Rectangle.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1466", "1", "2018-08-28 03:17:27", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2018-08-28 03:17:27", "0000-00-00 00:00:00", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?p=1466", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("1448", "4", "2018-07-30 00:03:17", "2018-07-30 00:03:17", "", "Auto Draft", "", "trash", "open", "open", "", "__trashed-2", "", "", "2018-07-30 00:03:17", "2018-07-30 00:03:17", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?p=1448", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("1465", "1", "2018-07-30 02:29:21", "2018-07-30 02:29:21", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title &amp; Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Duttons Service Centre</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|54px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"27px|0px|27px|0px\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading &amp; Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n\r\nA new vehicle service centre currently under construction for Dutton Motors, who specialise in Volkswagen, Subaru and Holden. Duttons already have sales premises in Totness and Murray Bridge, and this new site is expected to be completed in late 2018.\r\n\r\n<strong> Our Involvement: Design, Town Planning, Project Management, Cost Control, Interior Design</strong>\r\n\r\nBuilder: <a href=\"http://www.gehughes.com.au/\" target=\"_blank\" rel=\"noopener noreferrer\">GE Hughes Constructions</a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1215,1213\" gallery_orderby=\"rand\" gallery_captions=\",\" posts_number=\"2\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" module_class=\"centerGallery\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Duttons Service Centre", "", "inherit", "closed", "closed", "", "1214-revision-v1", "", "", "2018-07-30 02:29:21", "2018-07-30 02:29:21", "", "1214", "https://beyondink.alluredigitalmarketing.com.au/1214-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1451", "1", "2018-07-26 09:54:26", "2018-07-26 09:54:26", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Duttons Service Centre</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|54px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"27px|0px|27px|0px\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>A new vehicle service centre currently under construction for Dutton Motors, who specialise in Volkswagen, Subaru and Holden. Duttons already have sales premises in Totness and Murray Bridge, and this new site is expected to be completed in late 2018.</p>\n<p><strong> Our Involvement: Design, Town Planning, Project Management, Cost Control, Interior Design</strong></p>\n<p>Builder: <a href=\"http://www.gehughes.com.au/\" target=\"_blank\" rel=\"noopener noreferrer\">GE Hughes Constructions</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1215,1213\" gallery_orderby=\"rand\" gallery_captions=\",\" posts_number=\"2\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" module_class=\"centerGallery\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Duttons", "", "publish", "closed", "closed", "", "duttons", "", "", "2018-07-26 09:54:26", "2018-07-26 09:54:26", "", "0", "https://beyondink.alluredigitalmarketing.com.au/et_pb_layout/duttons/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("1452", "1", "2018-07-26 09:54:40", "2018-07-26 09:54:40", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Duttons Service Centre</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|54px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"27px|0px|27px|0px\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>A new vehicle service centre currently under construction for Dutton Motors, who specialise in Volkswagen, Subaru and Holden. Duttons already have sales premises in Totness and Murray Bridge, and this new site is expected to be completed in late 2018.</p>\n<p><strong> Our Involvement: Design, Town Planning, Project Management, Cost Control, Interior Design</strong></p>\n<p>Builder: <a href=\"http://www.gehughes.com.au/\" target=\"_blank\" rel=\"noopener noreferrer\">GE Hughes Constructions</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1215,1213\" gallery_orderby=\"rand\" gallery_captions=\",\" posts_number=\"2\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" module_class=\"centerGallery\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Duttons Service Centre", "", "inherit", "closed", "closed", "", "1214-revision-v1", "", "", "2018-07-26 09:54:40", "2018-07-26 09:54:40", "", "1214", "https://beyondink.alluredigitalmarketing.com.au/1214-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1453", "1", "2018-07-26 09:55:35", "2018-07-26 09:55:35", "[et_pb_section bb_built=\"1\"][et_pb_row][/et_pb_row][/et_pb_section]", "Mt Barker Commercial Premises", "", "inherit", "closed", "closed", "", "1450-revision-v1", "", "", "2018-07-26 09:55:35", "2018-07-26 09:55:35", "", "1450", "https://beyondink.alluredigitalmarketing.com.au/1450-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1464", "0", "2018-07-30 00:03:17", "2018-07-30 00:03:17", "", "Auto Draft", "", "inherit", "closed", "closed", "", "1448-revision-v1", "", "", "2018-07-30 00:03:17", "2018-07-30 00:03:17", "", "1448", "https://beyondink.alluredigitalmarketing.com.au/1448-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1459", "1", "2018-07-26 10:00:41", "2018-07-26 10:00:41", " ", "", "", "publish", "closed", "closed", "", "1459", "", "", "2018-07-30 02:30:40", "2018-07-30 02:30:40", "", "0", "https://beyondink.alluredigitalmarketing.com.au/?p=1459", "32", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("1457", "1", "2018-07-26 10:00:21", "2018-07-26 10:00:21", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Mt Barker Commercial Premises</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|54px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"27px|0px|27px|0px\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>This brand new commercial premises on Fiora Dutton Road is estimated to completed in November 2018.</p>\n<p><strong> Our Involvement: Design, Project Management, Cost Control, Town Planning</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1215,1213\" gallery_orderby=\"rand\" gallery_captions=\",\" posts_number=\"2\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" module_class=\"centerGallery\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Mt Barker Commercial Premises", "", "inherit", "closed", "closed", "", "1450-revision-v1", "", "", "2018-07-26 10:00:21", "2018-07-26 10:00:21", "", "1450", "https://beyondink.alluredigitalmarketing.com.au/1450-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1455", "1", "2018-07-26 09:56:34", "2018-07-26 09:56:34", "[et_pb_section bb_built=\"1\" admin_label=\"Header Section\" background_color=\"#9dd00f\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\" next_background_color=\"#ffffff\"][et_pb_row admin_label=\"Title Row\" custom_padding=\"27px|0px|11px|0px\" _builder_version=\"3.0.92\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Title &amp; Paragraph\" background_layout=\"dark\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n<h1>Duttons Service Centre</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|54px|0px\" prev_background_color=\"#9dd00f\" next_background_color=\"#000000\"][et_pb_row admin_label=\"Header Row\" make_fullwidth=\"on\" custom_padding=\"27px|0px|27px|0px\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading &amp; Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]\r\n\r\nA new vehicle service centre currently under construction for Dutton Motors, who specialise in Volkswagen, Subaru and Holden. Duttons already have sales premises in Totness and Murray Bridge, and this new site is expected to be completed in late 2018.\r\n\r\n<strong> Our Involvement: Design, Town Planning, Project Management, Cost Control, Interior Design</strong>\r\n\r\nBuilder: <a href=\"http://www.gehughes.com.au/\" target=\"_blank\" rel=\"noopener noreferrer\">GE Hughes Constructions</a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\" prev_background_color=\"#000000\" next_background_color=\"#000000\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"4_4\"][et_pb_gallery gallery_ids=\"1215,1213\" gallery_orderby=\"rand\" gallery_captions=\",\" posts_number=\"2\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" module_class=\"centerGallery\" _builder_version=\"3.0.106\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\" prev_background_color=\"#000000\"][et_pb_fullwidth_image _builder_version=\"3.0.106\" /][/et_pb_section]", "Mt Barker Commercial Premises", "", "inherit", "closed", "closed", "", "1450-revision-v1", "", "", "2018-07-26 09:56:34", "2018-07-26 09:56:34", "", "1450", "https://beyondink.alluredigitalmarketing.com.au/1450-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1462", "1", "2018-07-27 02:08:43", "2018-07-27 02:08:43", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Mt Barker Commercial Premises</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|54px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"27px|0px|27px|0px\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>New commercial premises in Mount Barker. Estimated commencement November 2018.</p>\n<p><strong> Our Involvement: Design, Project Management, Cost Control, Town Planning</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1215,1213\" gallery_orderby=\"rand\" gallery_captions=\",\" posts_number=\"2\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" module_class=\"centerGallery\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "Mt Barker Commercial Premises", "", "inherit", "closed", "closed", "", "1450-revision-v1", "", "", "2018-07-27 02:08:43", "2018-07-27 02:08:43", "", "1450", "https://beyondink.alluredigitalmarketing.com.au/1450-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1463", "1", "2018-07-27 02:08:44", "2018-07-27 02:08:44", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Mt Barker Commercial Premises</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.106\" custom_padding=\"54px|0px|54px|0px\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"27px|0px|27px|0px\" custom_padding_phone=\"3vw|||\" custom_margin=\"|||\" background_color=\"#f3f3f3\" admin_label=\"Header Row\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.0.106\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Heading & Subheading\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"#000000\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#000000\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"1000px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<p>New commercial premises in Mount Barker. Estimated commencement November 2018.</p>\n<p><strong> Our Involvement: Design, Project Management, Cost Control, Town Planning</strong></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|0|0px\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px\" _builder_version=\"3.0.106\" module_alignment=\"center\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_gallery gallery_ids=\"1215,1213\" gallery_orderby=\"rand\" gallery_captions=\",\" posts_number=\"2\" show_title_and_caption=\"off\" show_pagination=\"off\" zoom_icon_color=\"#000000\" hover_overlay_color=\"rgba(255,255,255,0.41)\" module_class=\"centerGallery\" _builder_version=\"3.0.106\"][/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.106\" custom_padding=\"0px|0px|30px|0px\"][et_pb_fullwidth_image _builder_version=\"3.0.106\"][/et_pb_fullwidth_image][/et_pb_section]", "", "", "inherit", "closed", "closed", "", "1450-autosave-v1", "", "", "2018-07-27 02:08:44", "2018-07-27 02:08:44", "", "1450", "https://beyondink.alluredigitalmarketing.com.au/1450-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1461", "1", "2018-07-26 10:02:11", "2018-07-26 10:02:11", "[et_pb_section fb_built=\"1\" background_color=\"#9dd00f\" admin_label=\"Header Section\" _builder_version=\"3.0.106\" background_color_gradient_direction=\"184deg\" custom_padding=\"2.2%|0px|53px|0px\"][et_pb_row custom_padding=\"27px|0px|11px|0px\" admin_label=\"Title Row\" _builder_version=\"3.0.92\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_text_color=\"rgba(255,255,255,0.55)\" text_line_height=\"1.8em\" header_font=\"Muli|700|||||||\" header_font_size=\"65px\" header_font_size_phone=\"50px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.4em\" header_2_font=\"||||||||\" text_orientation=\"center\" max_width=\"640px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_margin_tablet=\"0px|||0px\" custom_margin_last_edited=\"off|desktop\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fade\"]<h1>Coming Soon</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog Section\" _builder_version=\"3.0.92\" background_position=\"top_center\" custom_padding=\"0|0px|7px|0px\"][et_pb_row custom_padding=\"27px|0|59px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/South-West-Corner-2-800x441.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/murray-bridge-racing-club/\" align=\"center\" force_fullwidth=\"on\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"-50px|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p> </p>\n<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/murray-bridge-racing-club/\">Racing at Gifford Hill - Murray Bridge Racing Club</a></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|50px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Beyond-Ink-Office.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/beyond-ink-office/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/chapmans-meatworks-kloses-supermarket-nairne/\">Beyond Ink Office</a></span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Duttons.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/duttons-service-centre/https://beyondink.alluredigitalmarketing.com.au/mt-barker-commercial-premises/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/mt-barker-commercial-premises/\">Mt Barker Commercial Premises</a></span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|50px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Nairne.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/chapmans-meatworks-kloses-supermarket-nairne/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/chapmans-meatworks-kloses-supermarket-nairne/\">Klose\'s Supermarket Nairne</a></span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/CAMBRIDGE-WOODSIDE-SUPERMARKET-800x533.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/aldgate-renovation/https://beyondink.alluredigitalmarketing.com.au/kloses-supermarket-woodside/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/aldgate-renovation/https://beyondink.alluredigitalmarketing.com.au/kloses-supermarket-woodside/\">Klose\'s Supermarket Woodside</a></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0|0px|50px|0px\" _builder_version=\"3.0.106\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.106\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Wolf-Blass.jpg\" url=\"https://beyondink.alluredigitalmarketing.com.au/battunga-residence/https://beyondink.alluredigitalmarketing.com.au/wolf-blass-gallery-and-museum/\" _builder_version=\"3.0.106\"][/et_pb_image][et_pb_text admin_label=\"Title & Paragraph\" _builder_version=\"3.0.106\" text_font=\"Muli|600|||||||\" text_font_size=\"18px\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Muli|700|||||||\" header_2_text_align=\"center\" header_2_font_size=\"50px\" header_2_font_size_phone=\"40px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"800px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" custom_padding_last_edited=\"off|desktop\"]<p><span style=\"font-size: 18px;\"><a href=\"https://beyondink.alluredigitalmarketing.com.au/battunga-residence/https://beyondink.alluredigitalmarketing.com.au/wolf-blass-gallery-and-museum/\">Wolf Blass Gallery and Museum</a></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Coming Soon", "", "inherit", "closed", "closed", "", "195-revision-v1", "", "", "2018-07-26 10:02:11", "2018-07-26 10:02:11", "", "195", "https://beyondink.alluredigitalmarketing.com.au/195-revision-v1/", "0", "revision", "", "0");

/* INSERT TABLE DATA: wp_redirection_groups */
INSERT INTO `wp_redirection_groups` VALUES("1", "Redirections", "1", "1", "enabled", "0");
INSERT INTO `wp_redirection_groups` VALUES("2", "Modified Posts", "1", "1", "enabled", "1");

/* INSERT TABLE DATA: wp_redirection_items */
INSERT INTO `wp_redirection_items` VALUES("1", "/projects-2/residential/totness-residence/", "0", "0", "0", "0000-00-00 00:00:00", "1", "enabled", "url", "301", "a:3:{s:8:\"url_from\";s:0:\"\";s:11:\"url_notfrom\";s:0:\"\";s:6:\"server\";s:24:\"https://beyondink.com.au\";}", "server", "");

/* INSERT TABLE DATA: wp_term_relationships */
INSERT INTO `wp_term_relationships` VALUES("660", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("19", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("109", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("151", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("172", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("173", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("173", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("173", "5", "0");
INSERT INTO `wp_term_relationships` VALUES("191", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("203", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("210", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("224", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("322", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("322", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("322", "5", "0");
INSERT INTO `wp_term_relationships` VALUES("661", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("662", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("663", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("664", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("1102", "5", "0");
INSERT INTO `wp_term_relationships` VALUES("666", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("1102", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("669", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("670", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("671", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("1102", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("673", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("674", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("675", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("676", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("677", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("678", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("679", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("1451", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("715", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("714", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("716", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("716", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("716", "5", "0");
INSERT INTO `wp_term_relationships` VALUES("729", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("752", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("752", "6", "0");
INSERT INTO `wp_term_relationships` VALUES("752", "5", "0");
INSERT INTO `wp_term_relationships` VALUES("776", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("776", "7", "0");
INSERT INTO `wp_term_relationships` VALUES("776", "5", "0");
INSERT INTO `wp_term_relationships` VALUES("811", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("811", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("811", "5", "0");
INSERT INTO `wp_term_relationships` VALUES("899", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("899", "6", "0");
INSERT INTO `wp_term_relationships` VALUES("899", "5", "0");
INSERT INTO `wp_term_relationships` VALUES("901", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("901", "7", "0");
INSERT INTO `wp_term_relationships` VALUES("901", "5", "0");
INSERT INTO `wp_term_relationships` VALUES("924", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("924", "6", "0");
INSERT INTO `wp_term_relationships` VALUES("924", "5", "0");
INSERT INTO `wp_term_relationships` VALUES("925", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("925", "6", "0");
INSERT INTO `wp_term_relationships` VALUES("925", "5", "0");
INSERT INTO `wp_term_relationships` VALUES("955", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("955", "6", "0");
INSERT INTO `wp_term_relationships` VALUES("955", "5", "0");
INSERT INTO `wp_term_relationships` VALUES("993", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("998", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("998", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("998", "5", "0");
INSERT INTO `wp_term_relationships` VALUES("1114", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("1105", "9", "0");
INSERT INTO `wp_term_relationships` VALUES("1197", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("1196", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("1200", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("1448", "1", "0");
INSERT INTO `wp_term_relationships` VALUES("1226", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("1235", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("1235", "7", "0");
INSERT INTO `wp_term_relationships` VALUES("1235", "5", "0");
INSERT INTO `wp_term_relationships` VALUES("1317", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("1317", "7", "0");
INSERT INTO `wp_term_relationships` VALUES("1317", "5", "0");
INSERT INTO `wp_term_relationships` VALUES("1350", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("1364", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("1451", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("1451", "5", "0");
INSERT INTO `wp_term_relationships` VALUES("1459", "2", "0");

/* INSERT TABLE DATA: wp_term_taxonomy */
INSERT INTO `wp_term_taxonomy` VALUES("1", "1", "category", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("2", "2", "nav_menu", "", "0", "36");
INSERT INTO `wp_term_taxonomy` VALUES("3", "3", "scope", "", "0", "16");
INSERT INTO `wp_term_taxonomy` VALUES("4", "4", "layout_type", "", "0", "5");
INSERT INTO `wp_term_taxonomy` VALUES("5", "5", "module_width", "", "0", "16");
INSERT INTO `wp_term_taxonomy` VALUES("6", "6", "layout_type", "", "0", "5");
INSERT INTO `wp_term_taxonomy` VALUES("7", "7", "layout_type", "", "0", "4");
INSERT INTO `wp_term_taxonomy` VALUES("8", "8", "layout_type", "", "0", "2");
INSERT INTO `wp_term_taxonomy` VALUES("9", "9", "category", "", "0", "1");

/* INSERT TABLE DATA: wp_terms */
INSERT INTO `wp_terms` VALUES("1", "Uncategorized", "uncategorized", "0");
INSERT INTO `wp_terms` VALUES("2", "Header", "header", "0");
INSERT INTO `wp_terms` VALUES("3", "not_global", "not_global", "0");
INSERT INTO `wp_terms` VALUES("4", "layout", "layout", "0");
INSERT INTO `wp_terms` VALUES("5", "regular", "regular", "0");
INSERT INTO `wp_terms` VALUES("6", "section", "section", "0");
INSERT INTO `wp_terms` VALUES("7", "row", "row", "0");
INSERT INTO `wp_terms` VALUES("8", "module", "module", "0");
INSERT INTO `wp_terms` VALUES("9", "Blog", "blog", "0");

/* INSERT TABLE DATA: wp_usermeta */
INSERT INTO `wp_usermeta` VALUES("1", "1", "nickname", "alluredigitalmarketing");
INSERT INTO `wp_usermeta` VALUES("2", "1", "first_name", "");
INSERT INTO `wp_usermeta` VALUES("3", "1", "last_name", "");
INSERT INTO `wp_usermeta` VALUES("4", "1", "description", "");
INSERT INTO `wp_usermeta` VALUES("5", "1", "rich_editing", "true");
INSERT INTO `wp_usermeta` VALUES("6", "1", "syntax_highlighting", "true");
INSERT INTO `wp_usermeta` VALUES("7", "1", "comment_shortcuts", "false");
INSERT INTO `wp_usermeta` VALUES("8", "1", "admin_color", "fresh");
INSERT INTO `wp_usermeta` VALUES("9", "1", "use_ssl", "0");
INSERT INTO `wp_usermeta` VALUES("10", "1", "show_admin_bar_front", "true");
INSERT INTO `wp_usermeta` VALUES("11", "1", "locale", "");
INSERT INTO `wp_usermeta` VALUES("12", "1", "wp_capabilities", "a:1:{s:13:\"administrator\";b:1;}");
INSERT INTO `wp_usermeta` VALUES("13", "1", "wp_user_level", "10");
INSERT INTO `wp_usermeta` VALUES("14", "1", "dismissed_wp_pointers", "wp496_privacy");
INSERT INTO `wp_usermeta` VALUES("15", "1", "show_welcome_panel", "1");
INSERT INTO `wp_usermeta` VALUES("17", "1", "wp_dashboard_quick_press_last_post_id", "1466");
INSERT INTO `wp_usermeta` VALUES("18", "1", "community-events-location", "a:1:{s:2:\"ip\";s:12:\"101.185.19.0\";}");
INSERT INTO `wp_usermeta` VALUES("19", "1", "wp_yoast_notifications", "a:3:{i:0;a:2:{s:7:\"message\";s:1093:\"We\'ve noticed you\'ve been using Yoast SEO for some time now; we hope you love it! We\'d be thrilled if you could <a href=\"https://yoa.st/rate-yoast-seo?php_version=7.0.31&platform=wordpress&platform_version=4.9.8&software=free&software_version=7.3&role=administrator\">give us a 5 stars rating on WordPress.org</a>!\n\nIf you are experiencing issues, <a href=\"https://yoa.st/bugreport?php_version=7.0.31&platform=wordpress&platform_version=4.9.8&software=free&software_version=7.3&role=administrator\">please file a bug report</a> and we\'ll do our best to help you out.\n\nBy the way, did you know we also have a <a href=\'https://yoa.st/premium-notification?php_version=7.0.31&platform=wordpress&platform_version=4.9.8&software=free&software_version=7.3&role=administrator\'>Premium plugin</a>? It offers advanced features, like a redirect manager and support for multiple keywords. It also comes with 24/7 personal support.\n\n<a class=\"button\" href=\"https://beyondink.alluredigitalmarketing.com.au/wp-admin/?page=wpseo_dashboard&yoast_dismiss=upsell\">Please don\'t show me this notification anymore</a>\";s:7:\"options\";a:8:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:19:\"wpseo-upsell-notice\";s:5:\"nonce\";N;s:8:\"priority\";d:0.8000000000000000444089209850062616169452667236328125;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";}}i:1;a:2:{s:7:\"message\";s:190:\"Don\'t miss your crawl errors: <a href=\"https://beyondink.alluredigitalmarketing.com.au/wp-admin/admin.php?page=wpseo_search_console&tab=settings\">connect with Google Search Console here</a>.\";s:7:\"options\";a:8:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:17:\"wpseo-dismiss-gsc\";s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";}}i:2;a:2:{s:7:\"message\";s:244:\"<strong>Huge SEO Issue: You\'re blocking access to robots.</strong> You must <a href=\"https://beyondink.alluredigitalmarketing.com.au/wp-admin/options-reading.php\">go to your Reading Settings</a> and uncheck the box for Search Engine Visibility.\";s:7:\"options\";a:8:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:32:\"wpseo-dismiss-blog-public-notice\";s:5:\"nonce\";N;s:8:\"priority\";i:1;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";}}}");
INSERT INTO `wp_usermeta` VALUES("24", "1", "nav_menu_recently_edited", "2");
INSERT INTO `wp_usermeta` VALUES("81", "1", "session_tokens", "a:1:{s:64:\"480a5d965334778ee29dd537207b13fb2f37f217a1061b630b6f84f44cc8a2dc\";a:4:{s:10:\"expiration\";i:1535599044;s:2:\"ip\";s:14:\"101.185.19.252\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36\";s:5:\"login\";i:1535426244;}}");
INSERT INTO `wp_usermeta` VALUES("20", "1", "managenav-menuscolumnshidden", "a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}");
INSERT INTO `wp_usermeta` VALUES("21", "1", "metaboxhidden_nav-menus", "a:5:{i:0;s:21:\"add-post-type-project\";i:1;s:12:\"add-post_tag\";i:2;s:15:\"add-post_format\";i:3;s:20:\"add-project_category\";i:4;s:15:\"add-project_tag\";}");
INSERT INTO `wp_usermeta` VALUES("22", "1", "wp_user-settings", "libraryContent=browse&editor=tinymce");
INSERT INTO `wp_usermeta` VALUES("23", "1", "wp_user-settings-time", "1528632901");

/* INSERT TABLE DATA: wp_users */
INSERT INTO `wp_users` VALUES("1", "alluredigitalmarketing", "$P$BW7AcsEp/eihpY2NV4UZRLkRo30gDw/", "alluredigitalmarketing", "stephanie@alluredigitalmarketing.com.au", "", "2018-04-26 22:50:55", "", "0", "alluredigitalmarketing");

/* INSERT TABLE DATA: wp_yoast_seo_links */
INSERT INTO `wp_yoast_seo_links` VALUES("3378", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/1.jpg", "389", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3379", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/10.jpg", "389", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3164", "https://beyondink.alluredigitalmarketing.com.au/elders-strathalbyn/", "175", "530", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2077", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0209-800x533.jpg", "426", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2078", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0237-800x533.jpg", "426", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2079", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0234-800x533.jpg", "426", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2080", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0231-800x533.jpg", "426", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2081", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/4-800x533.jpg", "426", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2087", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0229-800x533.jpg", "426", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2086", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/13-800x533.jpg", "426", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3282", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Barker-Plaza-Entrance-800x534.jpg", "519", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3177", "https://beyondink.alluredigitalmarketing.com.au/crafers-residence/", "152", "232", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3176", "https://beyondink.alluredigitalmarketing.com.au/bridgewater-rammed-earth-renovation/", "152", "389", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3175", "https://beyondink.alluredigitalmarketing.com.au/bridgewater-rammed-earth-renovation/", "152", "389", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3174", "https://beyondink.alluredigitalmarketing.com.au/bridgewater-residence/", "152", "448", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3173", "https://beyondink.alluredigitalmarketing.com.au/bridgewater-residence/", "152", "448", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3172", "https://beyondink.alluredigitalmarketing.com.au/battunga-residence/", "152", "369", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3171", "https://beyondink.alluredigitalmarketing.com.au/battunga-residence/", "152", "369", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3170", "https://beyondink.alluredigitalmarketing.com.au/aldgate-renovation/", "152", "426", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3169", "https://beyondink.alluredigitalmarketing.com.au/aldgate-renovation/", "152", "426", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2085", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0240-800x533.jpg", "426", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2891", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2018-The-Manna-Of-Hahndorf-Executive-Room-5-534x800.jpg", "642", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2879", "http://www.hahndorfaccommodation.com.au/", "642", "0", "external");
INSERT INTO `wp_yoast_seo_links` VALUES("2880", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Hahndorf-Accommodation-Group-Reception-Office-3-800x533.jpg", "642", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2890", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2018-The-Manna-Of-Hahndorf-Executive-Room-6-534x800.jpg", "642", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2889", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2018-The-Manna-Of-Hahndorf-Executive-Room-9-800x534.jpg", "642", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2888", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Hahndorf-Accommodation-Group-Reception-Office-1-800x533.jpg", "642", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2887", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2018-The-Manna-Of-Hahndorf-Indulgence-Spa-Suites-19-800x534.jpg", "642", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3451", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/001-800x533.jpg", "1450", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3380", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/9.jpg", "389", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("498", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/409315_318529751516012_492909972_n.jpg", "369", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3189", "https://beyondink.alluredigitalmarketing.com.au/hahndorf-academy/", "204", "707", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3400", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/395254_317440711624916_1099705238_n.jpg", "378", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3399", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/400973_317440561624931_1471458582_n.jpg", "378", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3395", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/423007_317440608291593_1334194324_n.jpg", "378", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("500", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/425573_318529888182665_1787921071_n-1.jpg", "369", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("501", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/417983_318529854849335_53936863_n.jpg", "369", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("499", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/417328_318529808182673_143143435_n.jpg", "369", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2074", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/536803_359854900716830_634889735_n.jpg", "355", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2075", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/156515_359855010716819_1358822050_n.jpg", "355", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2072", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/398894_359855930716727_1584585568_n.jpg", "355", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2073", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/399123_359854960716824_1745614817_n.jpg", "355", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2070", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/305653_359854987383488_1833829054_n-1.jpg", "355", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2071", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/558724_359854937383493_2042806738_n.jpg", "355", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2068", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/535785_359854877383499_1699846534_n2.jpg", "355", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2069", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/564986_359855910716729_517072679_n.jpg", "355", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2067", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/403396_359855827383404_315308128_n.jpg", "355", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2066", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/522667_359855864050067_787378709_n.jpg", "355", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("434", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/IMG_0178-800x533.jpg", "339", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("435", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/IMG_0173-800x533.jpg", "339", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("433", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/2012-02-13-10.29.59-800x600.jpg", "339", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("432", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/2012-02-13-10.31.47-800x600.jpg", "339", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("430", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/16-800x533.jpg", "339", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("428", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/2012-02-13-10.31.18-800x600.jpg", "339", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("429", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/13-800x533.jpg", "339", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("431", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/7-800x600.jpg", "339", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("426", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/14-800x533.jpg", "339", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("427", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/8-800x600.jpg", "339", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("423", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/9-800x533.jpg", "339", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("425", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/11-800x533.jpg", "339", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("424", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/12-800x533.jpg", "339", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3249", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/2010088983_10_FS.jpg", "323", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3248", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Bell-6.jpg", "323", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3247", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Bell-7.jpg", "323", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3246", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/2010088983_13_FS.jpg", "323", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3245", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/2010088983_11_FS.jpg", "323", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3238", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Bell-Crt-4-1.jpg", "323", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3239", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Bell-9.jpg", "323", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3240", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/2010088983_19_FS.jpg", "323", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3241", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/2010088983_17_FS.jpg", "323", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3242", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Bell-Crt-2.jpg", "323", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3243", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Bell-8.jpg", "323", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3244", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Bell-Crt-5.jpg", "323", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2038", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/lt-1-1P2147-1511431005-rsd-800x533-1.jpg", "232", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2039", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/1-The-Latch-Atkinson-Rd-Crafers-West-18-800x532.jpg", "232", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2037", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/lt-1-1P2147-1811196365-rsd-800x533.jpg", "232", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2035", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-11-of-47-800x535.jpg", "232", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2036", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Exterior-3-of-6-800x535-1.jpg", "232", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2034", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/The-Latch-Atkinson-Rd-Crafers-West-5-800x532.jpg", "232", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2033", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-7-of-47-800x535.jpg", "232", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2029", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-21-of-47-800x535.jpg", "232", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2030", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/lt-1-1P2147-1511447357-rsd-800x533.jpg", "232", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2031", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Exterior-4-of-6-800x535-1.jpg", "232", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2032", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-29-of-47-800x535.jpg", "232", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2027", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-3-of-47-800x535.jpg", "232", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2028", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-14-of-47-800x535.jpg", "232", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2084", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/7-800x533.jpg", "426", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3396", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/399949_317440688291585_1511337278_n-1.jpg", "378", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3398", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/422275_317440648291589_232537411_n.jpg", "378", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3397", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/429042_317440628291591_807137394_n.jpg", "378", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2083", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0214-800x533.jpg", "426", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2082", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0224-800x533.jpg", "426", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3377", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/outdoor-3.jpg", "389", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3376", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/8.jpg", "389", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3375", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/2.jpg", "389", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3374", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/4.jpg", "389", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3373", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/7.jpg", "389", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3372", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/13.jpg", "389", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2076", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/12-800x533.jpg", "426", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3168", "https://beyondink.alluredigitalmarketing.com.au/adelaide-hills-residence/", "152", "323", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3455", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Perspective-REV-B-AUGUST-800x403.jpg", "1214", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3386", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6089-800x533.jpg", "448", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3387", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6106-HDR-800x533.jpg", "448", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3388", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6169-800x533.jpg", "448", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3381", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6211-800x533-1.jpg", "448", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3382", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6099-HDR-800x533.jpg", "448", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3383", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6155-HDR-800x533.jpg", "448", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3384", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6071-800x533.jpg", "448", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3385", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6058-800x533.jpg", "448", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3167", "https://beyondink.alluredigitalmarketing.com.au/adelaide-hills-residence/", "152", "323", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3402", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence-4.jpg", "462", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3405", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence-5.jpg", "462", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3404", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence-2.jpg", "462", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3403", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence-3.jpg", "462", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3401", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Kensingtons-Garden-Residence.jpg", "462", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3283", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/ALDI-800x534.jpg", "519", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3237", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/IMG_0633-800x533.jpg", "474", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3236", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Before-1-800x600.jpg", "474", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3235", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/IMG_0627-800x533.jpg", "474", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3234", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Stairs-1-800x533.jpg", "474", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3279", "http://bellabuildanddesign.com.au/", "519", "0", "external");
INSERT INTO `wp_yoast_seo_links` VALUES("3280", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Barker-Plaza-Mall-800x534.jpg", "519", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3281", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Barker-Plaza-Mall-ALDI-800x534.jpg", "519", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2884", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Hahndorf-Accommodation-Group-Reception-Office-2-800x533.jpg", "642", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2885", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2018-The-Manna-Of-Hahndorf-Executive-Room-13-800x534.jpg", "642", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("933", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Inavogue-Showroom-2.jpg", "540", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3161", "https://beyondink.alluredigitalmarketing.com.au/rivercorp-monarto-apple-processing-facility/", "175", "576", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3162", "https://beyondink.alluredigitalmarketing.com.au/rivercorp-monarto-apple-processing-facility/", "175", "576", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2886", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2018-The-Manna-Of-Hahndorf-Executive-Room-4-800x534.jpg", "642", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("904", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Elders-Strathalbyn-2.jpg", "530", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3285", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/1.jpg", "550", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("986", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Pulteney-Plaza-Apartments-2.jpg", "567", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("985", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Pulteney-Plaza-Apartments-3.jpg", "567", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2258", "https://beyondink.alluredigitalmarketing.com.au/sample-blog/", "1103", "1096", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3293", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/img_3054.jpg", "576", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3292", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/img_3052.jpg", "576", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3286", "http://www.palumbo.com.au/about/", "576", "0", "external");
INSERT INTO `wp_yoast_seo_links` VALUES("3287", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/img_3058.jpg", "576", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3288", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/img_3056.jpg", "576", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3289", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Rivercorp-Monarto-Apple-Processing-Plant-1.jpg", "576", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3290", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/img_3057.jpg", "576", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3291", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/img_3051.jpg", "576", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3163", "https://beyondink.alluredigitalmarketing.com.au/elders-strathalbyn/", "175", "530", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3357", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/7-800x600.jpg", "580", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3356", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/the-lane-vineyard-restaurants-hahndorf-3.jpg", "580", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3353", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/9-400x300.jpg", "580", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3354", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/the-lane-vineyard-wedding-photography-033-570x350.jpg", "580", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3352", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_3605-800x600-1.jpg", "580", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3349", "https://www.thelane.com.au/", "580", "0", "external");
INSERT INTO `wp_yoast_seo_links` VALUES("3350", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/the-lane-vineyard-restaurants-hahndorf-3-1.jpg", "580", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3351", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/thelane_weddingevent.jpg", "580", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("1845", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Barker-Plaza-Entrance-800x534.jpg", "102", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("1846", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Bell-8.jpg", "102", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3160", "https://beyondink.alluredigitalmarketing.com.au/pulteney-plaza-adelaide/", "175", "567", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3157", "https://beyondink.alluredigitalmarketing.com.au/inavogue-showroom/", "175", "540", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3158", "https://beyondink.alluredigitalmarketing.com.au/k1-winery/", "175", "550", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3159", "https://beyondink.alluredigitalmarketing.com.au/pulteney-plaza-adelaide/", "175", "567", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3371", "../the-manna-motel-of-hahndorf/", "600", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3452", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Perspective-REV-B-AUGUST-800x403.jpg", "1450", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3370", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/169__MCOLES__MKC6097-1024x684.jpg", "600", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3369", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/182__MCOLES__MKC6180-1024x684.jpg", "600", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3362", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/161__MCOLES__MKC6054-1024x684.jpg", "600", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3363", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/3__MCOLES__MKC5307-1024x684.jpg", "600", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3156", "https://beyondink.alluredigitalmarketing.com.au/k1-winery/", "175", "550", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3347", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2017-Haus-Studio-Apartments-Floor-Level-9-800x533.jpg", "613", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3338", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2017-Haus-Studio-Apartments-Floor-Level-2-800x533.jpg", "613", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3339", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2017-Haus-Studio-Apartments-Exterior-7-800x533.jpg", "613", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2243", "https://beyondink.alluredigitalmarketing.com.au/sample-blog/", "763", "1096", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("1298", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0184-800x533.jpg", "707", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("1296", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0183-800x533.jpg", "707", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("1297", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0181-800x533.jpg", "707", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3190", "https://beyondink.alluredigitalmarketing.com.au/hahndorf-academy/", "204", "707", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("1261", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_6211-800x533-4.jpg", "698", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("1262", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Skilly-Hills-1-4.jpg", "698", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("1263", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Skilly-Hills-1-3.jpg", "698", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("1260", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/7.jpg", "698", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3165", "https://beyondink.alluredigitalmarketing.com.au/coming-soon/", "175", "195", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3261", "#", "6", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("1295", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/the-hahndorf-academy-mark-richards.jpg", "707", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("1293", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/016-hahndorf.jpg", "707", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("1294", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/431005_322878134414507_1647380480_n.jpg", "707", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("1291", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_0192-800x533.jpg", "707", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("1292", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/422543_322878064414514_186815890_n.jpg", "707", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3269", "https://beyondink.alluredigitalmarketing.com.au/coming-soon/", "211", "195", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3273", "https://beyondink.alluredigitalmarketing.com.au/coming-soon/", "120", "195", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3270", "https://beyondink.alluredigitalmarketing.com.au/commercial/", "120", "175", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3271", "https://beyondink.alluredigitalmarketing.com.au/residential/", "120", "152", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3272", "https://beyondink.alluredigitalmarketing.com.au/restorations/", "120", "204", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("1842", "mailto:admin@beyondink.com.au", "102", "0", "external");
INSERT INTO `wp_yoast_seo_links` VALUES("1843", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/The-Latch-Atkinson-Rd-Crafers-West-5-800x532.jpg", "102", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3421", "https://marshallbrougham.com.au", "718", "0", "external");
INSERT INTO `wp_yoast_seo_links` VALUES("3422", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Main-Foyer-800x480.jpg", "718", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3425", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/BAR-1-800x362.jpg", "718", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3424", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/MBRC-Internal-Perspective-COMMITTEEMEMBERS-AIRLOCK-800x651.jpg", "718", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3423", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/Front-Entry-Portal-Dulux-Gunmetal-Kinetic-2.jpg", "718", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3256", "https://beyondink.alluredigitalmarketing.com.au/contact/", "6", "102", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3257", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/Barker-Plaza-Entrance-800x534.jpg", "6", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3258", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-13-of-47-800x535.jpg", "6", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3266", "https://beyondink.alluredigitalmarketing.com.au/restorations/", "211", "204", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3267", "https://beyondink.alluredigitalmarketing.com.au/restorations/", "211", "204", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3264", "https://beyondink.alluredigitalmarketing.com.au/residential/", "211", "152", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3265", "https://beyondink.alluredigitalmarketing.com.au/residential/", "211", "152", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3263", "https://beyondink.alluredigitalmarketing.com.au/commercial/", "211", "175", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3262", "https://beyondink.alluredigitalmarketing.com.au/commercial/", "211", "175", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("1844", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/05/5-Atkinson-Day-13-of-47-800x535.jpg", "102", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3268", "https://beyondink.alluredigitalmarketing.com.au/coming-soon/", "211", "195", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3260", "https://beyondink.alluredigitalmarketing.com.au/portfolio/", "6", "120", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3259", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/169__MCOLES__MKC6097-1024x684.jpg", "6", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2235", "#", "1090", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2248", "https://beyondink.alluredigitalmarketing.com.au/category/blog/", "763", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2247", "https://beyondink.alluredigitalmarketing.com.au/2018/07/", "763", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2245", "https://beyondink.alluredigitalmarketing.com.au/sample-blog/", "763", "1096", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2246", "https://beyondink.alluredigitalmarketing.com.au/sample-blog/", "763", "1096", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2244", "https://beyondink.alluredigitalmarketing.com.au/sample-blog/", "763", "1096", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3355", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/IMG_3603-800x600.jpg", "580", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3348", "../the-haus-cafebarkitchen/", "613", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3284", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/K1-Winery-2-1.jpg", "550", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2963", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/IMG_3809-e1531907559823.jpg", "985", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2962", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/IMG_7546-e1531907536776.jpg", "985", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2961", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/IMG_3801-e1531907643516.jpg", "985", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2960", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/IMG_7546-2.jpg", "985", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2259", "https://beyondink.alluredigitalmarketing.com.au/2018/07/", "1103", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2257", "https://beyondink.alluredigitalmarketing.com.au/sample-blog/", "1103", "1096", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2256", "https://beyondink.alluredigitalmarketing.com.au/sample-blog/", "1103", "1096", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2255", "https://beyondink.alluredigitalmarketing.com.au/sample-blog/", "1103", "1096", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2260", "https://beyondink.alluredigitalmarketing.com.au/category/blog/", "1103", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2266", "barker-plaza/", "1105", "519", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3221", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_3-800x533.jpg", "1119", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3220", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_48-800x533.jpg", "1119", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3219", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_9-800x533.jpg", "1119", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3217", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_34-800x533.jpg", "1119", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3218", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_43-800x533.jpg", "1119", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3216", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_36-800x533.jpg", "1119", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3215", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_33-800x533.jpg", "1119", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3214", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_23-800x533.jpg", "1119", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3213", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_35-800x533.jpg", "1119", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3209", "https://www.endurobuilders.com.au/about-us/", "1119", "0", "external");
INSERT INTO `wp_yoast_seo_links` VALUES("3210", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_42-800x533.jpg", "1119", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3211", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_29-800x533.jpg", "1119", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3212", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/5-Bennett-Street-Carrickalinga_HighRes_4K_39-800x533.jpg", "1119", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2543", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/WEB_70_Hogan_Dusk__8_of_35_-800x534.jpg", "1176", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2542", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/WEB_70_Hogan_Dusk__1_of_35_-800x534.jpg", "1176", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2540", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/WEB_PRINT_70_Hogan_Day__52_of_62_-800x534.jpg", "1176", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2541", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/WEB_70_Hogan_Dusk__31_of_35_-800x534.jpg", "1176", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2539", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/WEB_70_Hogan_Dusk__9_of_35_-800x534.jpg", "1176", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2538", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/WEB_70_Hogan_Dusk__14_of_35_-800x534.jpg", "1176", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2537", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/WEB_70_Hogan_Dusk__4_of_35_-800x534.jpg", "1176", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2536", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/WEB_70_Hogan_Dusk__10_of_35_-800x534.jpg", "1176", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2535", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/WEB_70_Hogan_Dusk__19_of_35_-800x534.jpg", "1176", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2534", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/WEB_70_Hogan_Dusk__29_of_35_-800x534.jpg", "1176", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2532", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/WEB_70_Hogan_Dusk__2_of_35_-800x534.jpg", "1176", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2533", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/WEB_70_Hogan_Dusk__26_of_35_-800x534.jpg", "1176", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2531", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/WEB_70_Hogan_Dusk__16_of_35_-800x534.jpg", "1176", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2544", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/WEB_70_Hogan_Dusk__23_of_35_-800x533.jpg", "1176", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2545", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/WEB_70_Hogan_Dusk__24_of_35_-800x534.jpg", "1176", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2546", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/WEB_70_Hogan_Dusk__27_of_35_-800x534.jpg", "1176", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3360", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/128__MCOLES__MKC0347-684x1024.jpg", "600", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3366", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/144__MCOLES__MKC5970-684x1024.jpg", "600", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3365", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/116__MCOLES__MKC5825-1024x684.jpg", "600", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3364", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/167__MCOLES__MKC6079-1024x684.jpg", "600", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3448", "https://beyondink.alluredigitalmarketing.com.au/aldgate-renovation/https://beyondink.alluredigitalmarketing.com.au/kloses-supermarket-woodside/", "195", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3449", "https://beyondink.alluredigitalmarketing.com.au/battunga-residence/https://beyondink.alluredigitalmarketing.com.au/wolf-blass-gallery-and-museum/", "195", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3444", "https://beyondink.alluredigitalmarketing.com.au/mt-barker-commercial-premises/", "195", "1450", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3361", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/165__MCOLES__MKC6070-1024x684.jpg", "600", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3430", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/184-800x533.jpg", "1198", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3429", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/External-REV-A-800x379.jpg", "1198", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3428", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/177-800x533.jpg", "1198", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3426", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Internal-REV-A-800x443.jpg", "1198", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3427", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/External-Road-REV-A-800x533.jpg", "1198", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3420", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/CAMBRIDGE-WOODSIDE-SUPERMARKET-800x533.jpg", "1223", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3439", "https://beyondink.alluredigitalmarketing.com.au/murray-bridge-racing-club/", "195", "718", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3368", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/159__MCOLES__MKC6044-1024x684.jpg", "600", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3367", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/231__MCOLES__MKC6457-1024x684.jpg", "600", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3416", "https://www.weekendnotes.com/disused-chapmans-smallgoods-factory/", "1347", "0", "external");
INSERT INTO `wp_yoast_seo_links` VALUES("3453", "http://www.gehughes.com.au/", "1214", "0", "external");
INSERT INTO `wp_yoast_seo_links` VALUES("3454", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/001-800x533.jpg", "1214", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3417", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/IMG_8482-800x533.jpg", "1223", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3418", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/IMG_8392-800x533.jpg", "1223", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3359", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/125__MCOLES__MKC0338-1024x684.jpg", "600", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3358", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2__MCOLES__MKC5304-1024x684.jpg", "600", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3346", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2017-Haus-Studio-Apartments-Exterior-1-800x533.jpg", "613", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3342", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2017-Haus-Studio-Apartments-Exterior-5-800x533.jpg", "613", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3343", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2017-Haus-Studio-Apartments-Upstairs-2-800x533.jpg", "613", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3345", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2018-Haus-Studio-Apartments-Exterior-9-800x534.jpg", "613", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3344", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2017-Haus-Studio-Apartments-Exterior-2-800x533.jpg", "613", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3341", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2017-Haus-Studio-Apartments-Exterior-6-800x533.jpg", "613", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3340", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2017-Haus-Studio-Apartments-Upstairs-7-800x533.jpg", "613", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3335", "http://www.hahndorfaccommodation.com.au/", "613", "0", "external");
INSERT INTO `wp_yoast_seo_links` VALUES("3336", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2017-Haus-Studio-Apartments-Floor-Level-6-800x533.jpg", "613", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2881", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2018-The-Manna-Of-Hahndorf-Indulgence-Spa-Suites-1-800x534.jpg", "642", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2882", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2018-The-Manna-Of-Hahndorf-Executive-Room-1-534x800.jpg", "642", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("2883", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/06/add2.jpg", "642", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3337", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/2017-Haus-Studio-Apartments-Exterior-3-800x533.jpg", "613", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3155", "https://beyondink.alluredigitalmarketing.com.au/the-manna-motel-of-hahndorf/", "175", "642", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3154", "https://beyondink.alluredigitalmarketing.com.au/k1-winery/", "175", "550", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3419", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/IMG_8384-800x533.jpg", "1223", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3153", "https://beyondink.alluredigitalmarketing.com.au/k1-winery/", "175", "550", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3151", "https://beyondink.alluredigitalmarketing.com.au/the-manna-apartments-2/", "175", "613", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3152", "https://beyondink.alluredigitalmarketing.com.au/the-manna-apartments-2/", "175", "613", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3450", "https://beyondink.alluredigitalmarketing.com.au/battunga-residence/https://beyondink.alluredigitalmarketing.com.au/wolf-blass-gallery-and-museum/", "195", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3445", "https://beyondink.alluredigitalmarketing.com.au/chapmans-meatworks-kloses-supermarket-nairne/", "195", "1347", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3446", "https://beyondink.alluredigitalmarketing.com.au/chapmans-meatworks-kloses-supermarket-nairne/", "195", "1347", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3447", "https://beyondink.alluredigitalmarketing.com.au/aldgate-renovation/https://beyondink.alluredigitalmarketing.com.au/kloses-supermarket-woodside/", "195", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3441", "https://beyondink.alluredigitalmarketing.com.au/beyond-ink-office/", "195", "1362", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3442", "https://beyondink.alluredigitalmarketing.com.au/chapmans-meatworks-kloses-supermarket-nairne/", "195", "1347", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3443", "https://beyondink.alluredigitalmarketing.com.au/duttons-service-centre/https://beyondink.alluredigitalmarketing.com.au/mt-barker-commercial-premises/", "195", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3415", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/IMG_2380-800x600.jpg", "1347", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3414", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/IMG_7612-800x600.jpg", "1347", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3413", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/IMG_4528-800x600.jpg", "1347", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3412", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/Cellars-800x600.jpg", "1347", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3408", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/BIs-New-Office-3-628x800.jpg", "1362", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3440", "https://beyondink.alluredigitalmarketing.com.au/murray-bridge-racing-club/", "195", "718", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3406", "http://kingsgatehomes.com.au/", "1362", "0", "external");
INSERT INTO `wp_yoast_seo_links` VALUES("3407", "https://beyondink.alluredigitalmarketing.com.au/wp-content/uploads/2018/07/BIs-New-Office-REAR-800x451.jpg", "1362", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3150", "https://beyondink.alluredigitalmarketing.com.au/the-haus-cafebarkitchen/", "175", "600", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3149", "https://beyondink.alluredigitalmarketing.com.au/the-haus-cafebarkitchen/", "175", "600", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3148", "https://beyondink.alluredigitalmarketing.com.au/barker-plaza/", "175", "519", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3147", "https://beyondink.alluredigitalmarketing.com.au/barker-plaza/", "175", "519", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3146", "https://beyondink.alluredigitalmarketing.com.au/battunga-residence/https://beyondink.alluredigitalmarketing.com.au/wolf-blass-gallery-and-museum/", "175", "0", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3145", "https://beyondink.alluredigitalmarketing.com.au/the-lane-vineyard/", "175", "580", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3166", "https://beyondink.alluredigitalmarketing.com.au/coming-soon/", "175", "195", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3178", "https://beyondink.alluredigitalmarketing.com.au/crafers-residence/", "152", "232", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3179", "https://beyondink.alluredigitalmarketing.com.au/echunga-residence/", "152", "355", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3180", "https://beyondink.alluredigitalmarketing.com.au/echunga-residence/", "152", "355", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3181", "https://beyondink.alluredigitalmarketing.com.au/jupiter-creek-residence/", "152", "378", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3182", "https://beyondink.alluredigitalmarketing.com.au/jupiter-creek-residence/", "152", "378", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3183", "https://beyondink.alluredigitalmarketing.com.au/kensington-gardens/", "152", "462", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3184", "https://beyondink.alluredigitalmarketing.com.au/kensington-gardens/", "152", "462", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3185", "https://beyondink.alluredigitalmarketing.com.au/littlehampton-renovation-additions/", "152", "474", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3186", "https://beyondink.alluredigitalmarketing.com.au/littlehampton-renovation-additions/", "152", "474", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3187", "https://beyondink.alluredigitalmarketing.com.au/totness-residence/", "152", "339", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3188", "https://beyondink.alluredigitalmarketing.com.au/totness-residence/", "152", "339", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3191", "https://beyondink.alluredigitalmarketing.com.au/skilly-hills-function-centre-restoration-project/", "204", "698", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3192", "https://beyondink.alluredigitalmarketing.com.au/skilly-hills-function-centre-restoration-project/", "204", "698", "internal");
INSERT INTO `wp_yoast_seo_links` VALUES("3193", "https://beyondink.alluredigitalmarketing.com.au/skilly-hills-function-centre-restoration-project/", "204", "698", "internal");

/* INSERT TABLE DATA: wp_yoast_seo_meta */
INSERT INTO `wp_yoast_seo_meta` VALUES("6", "6", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("2", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("36", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("37", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("35", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("41", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("43", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("45", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("47", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("50", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("52", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("39", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("9", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("11", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("10", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("54", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("57", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("59", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("60", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("63", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("65", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("67", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("70", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("72", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("74", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("80", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("84", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("88", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("90", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("92", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("3", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("97", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("99", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("101", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("102", "4", "1");
INSERT INTO `wp_yoast_seo_meta` VALUES("106", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("108", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("110", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("113", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("115", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("116", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("118", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("120", "4", "1");
INSERT INTO `wp_yoast_seo_meta` VALUES("129", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("131", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("134", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("137", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("139", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("94", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("145", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("148", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("149", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("152", "22", "3");
INSERT INTO `wp_yoast_seo_meta` VALUES("157", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("155", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("168", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("175", "22", "3");
INSERT INTO `wp_yoast_seo_meta` VALUES("178", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("190", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("194", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("195", "12", "5");
INSERT INTO `wp_yoast_seo_meta` VALUES("197", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("198", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("204", "5", "3");
INSERT INTO `wp_yoast_seo_meta` VALUES("206", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("211", "8", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("222", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("227", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("230", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("232", "13", "2");
INSERT INTO `wp_yoast_seo_meta` VALUES("218", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("219", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("216", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("217", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("215", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("214", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("212", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("213", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("234", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("305", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("307", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("309", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("311", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("312", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("314", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("315", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("317", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("319", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("323", "12", "2");
INSERT INTO `wp_yoast_seo_meta` VALUES("325", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("339", "13", "2");
INSERT INTO `wp_yoast_seo_meta` VALUES("355", "10", "2");
INSERT INTO `wp_yoast_seo_meta` VALUES("357", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("369", "4", "2");
INSERT INTO `wp_yoast_seo_meta` VALUES("371", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("377", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("378", "6", "2");
INSERT INTO `wp_yoast_seo_meta` VALUES("380", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("388", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("389", "9", "2");
INSERT INTO `wp_yoast_seo_meta` VALUES("391", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("20", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("21", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("22", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("23", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("24", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("25", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("26", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("27", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("28", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("29", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("30", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("31", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("32", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("33", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("34", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("76", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("77", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("79", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("89", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("93", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("225", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("403", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("135", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("136", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("405", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("407", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("408", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("406", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("411", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("416", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("419", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("425", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("426", "12", "2");
INSERT INTO `wp_yoast_seo_meta` VALUES("412", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("428", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("430", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("432", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("448", "8", "2");
INSERT INTO `wp_yoast_seo_meta` VALUES("451", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("449", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("462", "5", "2");
INSERT INTO `wp_yoast_seo_meta` VALUES("465", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("471", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("463", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("474", "4", "2");
INSERT INTO `wp_yoast_seo_meta` VALUES("477", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("475", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("498", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("497", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("500", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("506", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("508", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("519", "4", "3");
INSERT INTO `wp_yoast_seo_meta` VALUES("521", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("530", "1", "2");
INSERT INTO `wp_yoast_seo_meta` VALUES("529", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("517", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("531", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("534", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("540", "1", "1");
INSERT INTO `wp_yoast_seo_meta` VALUES("514", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("543", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("546", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("539", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("550", "2", "4");
INSERT INTO `wp_yoast_seo_meta` VALUES("513", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("553", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("560", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("563", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("549", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("567", "2", "2");
INSERT INTO `wp_yoast_seo_meta` VALUES("515", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("570", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("566", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("576", "7", "2");
INSERT INTO `wp_yoast_seo_meta` VALUES("575", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("577", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("580", "8", "1");
INSERT INTO `wp_yoast_seo_meta` VALUES("582", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("596", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("579", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("600", "14", "2");
INSERT INTO `wp_yoast_seo_meta` VALUES("603", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("601", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("613", "13", "2");
INSERT INTO `wp_yoast_seo_meta` VALUES("615", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("612", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("629", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("630", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("627", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("642", "12", "1");
INSERT INTO `wp_yoast_seo_meta` VALUES("645", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("641", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("681", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("698", "4", "3");
INSERT INTO `wp_yoast_seo_meta` VALUES("700", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("697", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("707", "8", "2");
INSERT INTO `wp_yoast_seo_meta` VALUES("710", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("708", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("718", "4", "2");
INSERT INTO `wp_yoast_seo_meta` VALUES("720", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("722", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("724", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("735", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("737", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("739", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("741", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("743", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("746", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("750", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("528", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("754", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("756", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("758", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("760", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("749", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("763", "6", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("762", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("765", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("768", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("767", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("772", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("774", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("775", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("68", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("55", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("38", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("12", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("13", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("8", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("166", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("95", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("303", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("782", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("785", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("788", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("792", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("791", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("794", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("796", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("799", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("801", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("803", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("807", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("809", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("813", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("810", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("814", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("817", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("819", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("822", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("827", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("831", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("833", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("835", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("838", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("839", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("841", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("843", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("845", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("846", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("848", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("850", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("853", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("126", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("124", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("125", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("122", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("123", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("103", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("127", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("855", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("857", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("860", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("862", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("864", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("866", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("868", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("871", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("873", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("878", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("881", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("402", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("730", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("890", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("892", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("894", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("896", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("898", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("902", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("904", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("905", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("877", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("909", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("886", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("911", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("913", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("916", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("921", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("926", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("928", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("929", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("931", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("933", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("936", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("938", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("940", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("942", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("945", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("950", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("948", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("952", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("954", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("883", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("957", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("958", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("960", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("962", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("964", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("966", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("972", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("974", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("975", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("976", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("875", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("876", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("885", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("912", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("982", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("984", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("985", "4", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("987", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("994", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("995", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("997", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1001", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1003", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("991", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1006", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("564", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1008", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1010", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("598", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1011", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1013", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("610", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1014", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1016", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("625", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1017", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("658", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1019", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1023", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("639", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1024", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1026", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1027", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1030", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("421", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1031", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("494", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1033", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("422", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1036", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1037", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1039", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1041", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("446", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1043", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1044", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1046", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("665", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("667", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("668", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("672", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1048", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1050", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1051", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1053", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1054", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1056", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1058", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1062", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1064", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1066", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1067", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1082", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1090", "1", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1096", "0", "8");
INSERT INTO `wp_yoast_seo_meta` VALUES("1098", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1103", "6", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1105", "1", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1112", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1115", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1085", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1083", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1084", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1086", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1119", "12", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1122", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1173", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1175", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1176", "16", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1178", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1198", "5", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1201", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1203", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1205", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1212", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1214", "2", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1218", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1220", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1222", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1223", "4", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1227", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1233", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1080", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1077", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1234", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1237", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1075", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1239", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1241", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1242", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1245", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1250", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1251", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1253", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1258", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1273", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1274", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1303", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1304", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1305", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1310", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1312", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1314", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1318", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1320", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1322", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1324", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1328", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1329", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1334", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1336", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1338", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1339", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1341", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1342", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1344", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1346", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1347", "4", "3");
INSERT INTO `wp_yoast_seo_meta` VALUES("1349", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1351", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1360", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1362", "2", "1");
INSERT INTO `wp_yoast_seo_meta` VALUES("1365", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1256", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1370", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1374", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1371", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1380", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1383", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1385", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1386", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1388", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1393", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1377", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1401", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1403", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("680", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1068", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1404", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1407", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1408", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1070", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1412", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1072", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1413", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1415", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1416", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1419", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1421", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1423", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1425", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1429", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("420", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("472", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1439", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("981", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1094", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1450", "2", "1");
INSERT INTO `wp_yoast_seo_meta` VALUES("1454", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1456", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1217", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1458", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1460", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1448", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1449", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("887", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("888", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1410", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1447", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("968", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("970", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1097", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1110", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1118", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1445", "0", "0");
INSERT INTO `wp_yoast_seo_meta` VALUES("1446", "0", "0");

SET FOREIGN_KEY_CHECKS = 1; 

/* Duplicator WordPress Timestamp: 2018-08-28 03:22:24*/
/* DUPLICATOR_MYSQLDUMP_EOF */
